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
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(,));
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(,));
It's your turn to help shape SAS Innovate 2027. Share your expertise and inspire the SAS community.
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.
Ready to level-up your skills? Choose your own adventure.