BookmarkSubscribeRSS Feed
Babloo
Rhodochrosite | Level 12

I've trouble understanding the macro execution. When I tried to run the code below, .csv file got generated where as it could not be as log.error_table has 0 observations.

 

I'm execpting this code to produce error_table.csv only if log.error_table not equal to zero observations. Could someone guide me to achive this task?

 

%macro export_conditionally;
 

proc sql noprint;
select count(*)  into :count from log.error_table;
quit;


 
%if "&count" ne 0 %then %do;
   proc export data=log.error_table outfile='/usr/sas/tir/work/error_table.csv' dbms=csv replace;
run;

%end;
 
%mend;

%export_conditionally;

 Log:

proc sql noprint;
18        +
  select   
19        + count(*)  into :count from log.error_table;
19        +                                              quit;
NOTE: PROCEDURE SQL used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      

19        +                                                        proc export data=log.error_table 
outfile='/usr/sas/tir/work/error_table.csv' dbms=csv replace;
19        +
17                                                         The SAS System                         07:03 Saturday, September 26, 2015

  run;     

NOTE: No observations in data set LOG.ERROR_TABLE.
NOTE: Data set has 0 observations.
2 REPLIES 2
Reeza
Super User
1. check what happens to the macro variable if the table does not exist
2. Check your comparison "&count" = 0, I don't think you need the quotes.
Quentin
Super User

Agree with Reeza.  If you turn on options mlogic, you should see that 

%if "&count" ne 0 %then %do;

evalutes to true (not equal) even when &count=0.   The above comparison will compare the three character string "0" to the one character string 0, and return true (not equal).  Because all macro variables resolve to text, you do not need quote marks around text strings.  Suggest you change to:

%if &count ne 0 %then %do;

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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
  • 2 replies
  • 1140 views
  • 0 likes
  • 3 in conversation