BookmarkSubscribeRSS Feed
Walternate
Obsidian | Level 7

Hi,

 

I am using proc sql to pull the variable names and labels from a datafile I have and put them into macro vars (one each for varnames and labels). The issue is that I only want to pull in the varname+label pairs for those variables that do not have year values in the labels. This is what I've tried:

 

proc sql noprint;

     select name, label

     into :varnames separated by ' ', :varlabels separated by '#'

     from dictionary.columns

     where upcase(libname)='MYLIB' and

                upcase(memname)='DATAFILE1' and

                label not contains ('%20%');

quit;

 

It runs without any error messages, but it pulls in all variables even if the labels do have years in them.

 

Any help is much appreciated!

2 REPLIES 2
Jagadishkatam
Amethyst | Level 16
Contains will check for character string , however your goal is to check for numeric if its not present.
so try to replace the label not contains with the below code

compress(label,'kd') eq '';

This way we are keeping only the numeric values in label and they should be missing. So only the variables with labels with no year are selected.
Thanks,
Jag
PGStats
Opal | Level 21

Try

 

label not contains '20'

 

or

 

label not like '%20%'

PG

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!

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

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
  • 17326 views
  • 0 likes
  • 3 in conversation