Why below append and contents prod does not work inside do loop?
........................................
%if &error='NO' %then %do;*Macro error has 'NO'.
%let message=&message;*I have message defined aleady;
proc contents data=record;*I already have record dataset;
proc append base=updates data=record;
run;
%end;
If i run above code inside macro data 'record' does not append to the 'updates' table.
Does the macro variable ERROR contain the value NO or does it also contain the surrounding single quotes?
Your code is checking for the value 'NO' not for the value NO.
It will help to show the entire macro and how you assign a value to &error.
As a debug tool use:
options mprint symbolgen;
and then run the macro. The post the results from the log.
Does the macro variable ERROR contain the value NO or does it also contain the surrounding single quotes?
Your code is checking for the value 'NO' not for the value NO.
I have created NO as below:
call symput('error', 'NO');
Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9.
Early bird rate extended! Save $200 when you sign up by March 31.
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.