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.

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
  • 2 replies
  • 724 views
  • 0 likes
  • 2 in conversation