BookmarkSubscribeRSS Feed
RoWa
Calcite | Level 5

Hello I have a macro loop and has two steps, and the second step is transpose, but if the 1st step gets the empty data set (0 observation) then the 2nd step will have error. How can I have a step to test if the data set is empty, if its will jump to next loop. please see example below

 

%do m=1 %to 12;

          %do n=1 %to 6;         
                            /*1ST STEP*/      %Collect-DATA-SET-Step;

                            /*2ND STEP*/      %TRANSPOSE-Step;
          %end;    
%end;

 

What I would like is to have a test step after the 1st step, if the data set is empty, them move to next round loop.

 

Any thoughts are appreciated. Thank you. 

5 REPLIES 5
Kurt_Bremser
Super User
proc sql noprint;
select nobs into :nobs from dictionary.tables
where libname = "XXXXX" and memname = "YYYYY";
quit;

%if &nobs ne 0 %then %do;

/* transpose step */

%end;
RoWa
Calcite | Level 5

Thank you. I am little confused with "where libname = "xxxxxx" and memname = "YYYYY"  ". What am I supposed to fillup for the xxxxxx and YYYYY?

 

 

I have posted a sample of my program, and can you please help me to correct it?  I have struggled for few hours on this....:(

 

 

%do i= 1 %to 2;
%let PRIN1 = %scan(%bquote(&PRINLST), &i, ' ');
%put &prin1;

        %do j = 1 %to 2;
        %let POS1 = %scan(%bquote(&POS),&j, ' ');
        %put &POS1;

            %do m=1 %to 2;
            %let CLSYRMTH1 = %scan(%bquote(&CLSYRMTH),&m, ' ');
            %put &CLSYRMTH1;

 

                    %Basetable(&PRIN1, &POS1, &CLSYRMTH1); /*Gather base table*/

                    proc sql noprint;
                    select nobs into :nobs
                    from WORK.T_&PRIN1._&POS1._&CLSYRMTH1
                    where libname = "WORK" and memname = "YYYYY"
                    ;quit;

 

                    %if &nobs ne 0 %then %do;

                    %TRANSPOSE(&PRIN1, &POS1, &CLSYRMTH1); /*Transpose step*/

                    %end;

            %end;
      %end;
%end;

RoWa
Calcite | Level 5

I figured it out. Thank you. 

baldcypress
Calcite | Level 5

Below is an example using count(*) in PROC SQL:

 

%macro split(i, file);
%do i=1 %to &i;
proc sql noprint;
select count(*) into :obs_count
from &file._out&i;
quit;
%if &obs_count ne 0 and &file=res %then %do;
proc export data=&file._out&i label /* The label option is used to export the label names as variable names */
outfile="&SF\covid19&file.&i..csv"
dbms=csv replace;
run;
%end;
%else %if &obs_count ne 0 %then %do;
proc export data=&file._out&i
outfile="&SF\covid19&file.&i..csv"
dbms=csv replace;
run;
%end;

%end;
%mend split;

 

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