Hi, I am new in SAS and trying to do a basic count varible but after it count the first observation the count variable remains the same. Here the code: DATA WORK.A; SET B; IF (X NE . OR X NE 0) THEN DO; COUNT + 1; END; ;RUN; Thanks for the help.
... View more