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

Hi SAS users,

 

Need help to clear the SCAN error. 'all_exclusions' macro variable has 30 variables with comma delimiter inbetween  and 'temp_exclusions' has 30 variables.

 

%Do i = 1 %to &count; 

%LET exclusion1 = %scan(&all_exclusions,&i, ',');    
%LET exclusion2 = %scan(&temp_exclusions,&i, ',');

%if %upcase(&exclusion1) = Y %then %Do; %let ...............%End;
%END;

 

 

Thanks,

Ana

 

 

1 ACCEPTED SOLUTION

Accepted Solutions
novinosrin
Tourmaline | Level 20

Try quoting the delimiter for the compiler to deal with resolving delimiter commas as plain text and not an argument separator for the function

%LET exclusion1 = %scan(%bquote(&all_exclusions),&i,%str(,));    
%LET exclusion2 = %scan(%bquote(&temp_exclusions),&i,%str(,));

 

View solution in original post

2 REPLIES 2
novinosrin
Tourmaline | Level 20

Try quoting the delimiter for the compiler to deal with resolving delimiter commas as plain text and not an argument separator for the function

%LET exclusion1 = %scan(%bquote(&all_exclusions),&i,%str(,));    
%LET exclusion2 = %scan(%bquote(&temp_exclusions),&i,%str(,));

 

SASAna
Quartz | Level 8
Thanks! Much appreciated.
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
  • 1231 views
  • 0 likes
  • 2 in conversation