BookmarkSubscribeRSS Feed
Ujjawal
Quartz | Level 8

Is it possible to write IF-THEN-ELSE statement under any procedure?

%macro (depvar=,numvars=,charvars=);

proc logistic data = abc descending;

class &charvars / param = ref;

model &depvar = &numvars &charvars / selection = stepwise;

run;

%mend;

I want the following statement wrapped in IF THEN condition. It should run only if an user specify variable(s) in CHARVARS parameter in the macro.

class &charvars / param = ref;

Something like this :

proc logistic data = abc descending;

%IF countw(&charvars) = 0 %THEN;

class &charvars / param = ref;

%END;

model &depvar = &numvars &charvars / selection = stepwise;

run;

2 REPLIES 2
Reeza
Super User

1. Functions in macro code you need to use %sysfunc

2. I think you mean to check if Countw is greater than 0, not equal to 0.

Perhaps something like the following:

%IF %sysfunc(countw(&charvars)) > 0 %THEN;

class &charvars / param = ref;

%END;

ndp
Quartz | Level 8 ndp
Quartz | Level 8

Try this:

%IF &CHARVARS ^= %STR( ) %THEN %DO; CLASS...; %END;


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
  • 1278 views
  • 0 likes
  • 3 in conversation