Could you please guide on below Error, I am comparing data and when matched setting a string to a variable I need to send the result in an email, so I need value outside the code block. SAS CODE: DATA _NULL_; if (10 EQ 10) then ValResult ="MATCHED" ; ValResult ="NOT MATCHED" ; RUN; %put &ValResult.; LOG: %put &ValResult.; WARNING: Apparent symbolic reference VALRESULT not resolved. &ValResult. RESULT: in results tab I am getting MATCHED
... View more