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: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

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