Hello novinosrin, I did use the '=1' shown in your example code to get my job working for now. Was cleaner than things I was thinking of. Have not heard back from SAS yet. Track 7613246087. Thanks, Andy
... View more
Thanks much for the response(s). I believe this is my first time ever posting here. Rare to find problems like this - this one was painful. But, I had hope wise people would help. I will open a ticket with SAS.
... View more
Any idea why HIT2 is not showing in the log from this code?: data; array a (2) a1 a2; a1 = 1; a2 = 0; b = 1; if b and (a(1) or a(2) or 0) then put 'HIT1'; if b and (a(1) or (a(2) or 0)) then put 'HIT2'; if b and (1 or (0 or 0)) then put 'HIT3'; put _all_; run; HIT1 HIT3 a1=1 a2=0 b=1 _ERROR_=0 _N_=1
... View more