Dear SAS communities
I can use hx_: to pick out all the variables with names starting with "hx_"
but is there a way to pick out all the variables with names that end with some specific text? for example: I want to pick out all the variables "diabetes_year", "ami_year", "menopause_year" by using "_year", is there such code?
thanks
Raymond
You'd have to show where you are doing the task but, more than likely, you can use the reverse function, e.g.,
if reverse(varname) =: 'reay_';
Art, CEO, AnalystFinder.com
There is no way to do specify a variable list based on the ending of the name.
You could build a list of names by querying the metadata of the data source.
proc contents data=have noprint out=contents; run;
proc sql noprint;
%let varlist=;
select varnum,name
into :dummy,:varlist separated by ' '
from contents
where upcase(name) like '%^_YEAR' escape '^'
order by varnum
;
quit;
data want ;
set have ;
max_year_value = max(of . &varlist );
run;
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
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.