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;
The Boston Area SAS Users Group (BASUG) is hosting our in person SAS Blowout on Oct 18!
This full-day event in Cambridge, Mass features four presenters from SAS, presenting on a range of SAS 9 programming topics. Pre-registration by Oct 15 is required.
Full details and registration info at https://www.basug.org/events.

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