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-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

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