BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
chris_e
Obsidian | Level 7

The following code checks whether an exposure value is less than 0 or . and if it is makes it 0. It then puts this into a new field called Raw_Agg_ and whatever the user puts in the variable cov, but I am unable to get SAS to create a new column header out of Raw_Agg_ and the macro variable cov

 

%macro expo_check(exposure_field, cov);
	
	if &exposure_field. < 0 or &exposure_field. = . then Raw_Agg_ || &cov. = 0;
		run;
%mend;

 

Any help would be greatly appreciated.

 

Thanks

 

1 ACCEPTED SOLUTION

Accepted Solutions
Reeza
Super User

You don't need the concatenation operator.

 

%macro expo_check(exposure_field, cov);
	
	if &exposure_field. < 0 or &exposure_field. = . then Raw_Agg_&cov. = 0;
		run;
%mend;

View solution in original post

3 REPLIES 3
Reeza
Super User

You don't need the concatenation operator.

 

%macro expo_check(exposure_field, cov);
	
	if &exposure_field. < 0 or &exposure_field. = . then Raw_Agg_&cov. = 0;
		run;
%mend;
chris_e
Obsidian | Level 7

Thanks, that was easy I was trying all sorts of other complicated stuff.

PGStats
Opal | Level 21

You probably don't need the run statement either. It should reside in the calling scope.

PG

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

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