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.

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
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
  • 1088 views
  • 0 likes
  • 3 in conversation