BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Bal
Calcite | Level 5 Bal
Calcite | Level 5

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.

1 ACCEPTED SOLUTION

Accepted Solutions
Tom
Super User Tom
Super User

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.

View solution in original post

4 REPLIES 4
ballardw
Super User

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.

Tom
Super User Tom
Super User

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.

Bal
Calcite | Level 5 Bal
Calcite | Level 5

I have created NO as below:

call symput('error', 'NO');

Bal
Calcite | Level 5 Bal
Calcite | Level 5
Thank you very much. Problem was I put single quote. So this means we don't need any quote even if it is character value for macro variable. Now it's working without quote.

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

How to Concatenate Values

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 4 replies
  • 1205 views
  • 0 likes
  • 3 in conversation