SAS Procedures

Help using Base SAS procedures
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-white.png

Our biggest data and AI event of the year.

Don’t miss the livestream kicking off May 7. It’s free. It’s easy. And it’s the best seat in the house.

Join us virtually with our complimentary SAS Innovate Digital Pass. Watch live or on-demand in multiple languages, with translations available to help you get the most out of every session.

 

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 18058 views
  • 0 likes
  • 3 in conversation