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.

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
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
  • 651 views
  • 0 likes
  • 2 in conversation