BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Sir_Highbury
Quartz | Level 8

Dear experts,

 

let's assume that I have a adata set containing the following variables:

name, surname, age, address, salary201401, salary201402, salary201403... salary201512

 

I qould like to use a proc sql or a data step to get the following variables:

- name

- all the salaries (i.e. variables contains "salary")

 

Any suggestion?

 

Thanks a lot

 

 

 

1 ACCEPTED SOLUTION

Accepted Solutions
Reeza
Super User

You can use the colon operator which will keep all variables starting with the prefix indicated. 

 

Data want;
Set have;
Keep name salary:;
Run;

Conversely, if your keeping almost all of the variables you can drop the ones you don't need instead. 

View solution in original post

4 REPLIES 4
RW9
Diamond | Level 26 RW9
Diamond | Level 26

Sorry, do you want column names?  If so then query sashelp.vcolumns, or dictionary.columns:
data want;  

  set sashelp.vcolumn (where=(libname="WORK" and memname="YOURDATASET"));

run;

 

If you want the values in the coulmns then you can use a generic reference:

data want;
  set have;
  gep=sum(of salary:);
run;

However all that aside, its really not a good idea to name your variables with "data" - in this case a date.  You could end up with lots of variables, and your code will become difficult to work with as the strcuture changes, and even within a datarow may not be the same.  Far better to work with normalised data:

NAME   SURNAME  ADDRESS  SALARY_DATE  SALARY

...

Do remember the data you program on does not need to be the same as output data, you can always transpose at the end.

Sir_Highbury
Quartz | Level 8

Hi RW9,

sorry, my explanation was not clear. I would like to get the following;

proc sql; create table subset as select name, Salary201401 .... Salary201512 from input; run;

basically I wanna select all the variables containing "salary" plus something else.

Thanks.

RW9
Diamond | Level 26 RW9
Diamond | Level 26

Yes, then my first example would be the one:

proc sql;
  select NAME
  into    :VLIST separated by ","
  from   DICTIONARY.COLUMNS
  where LIBNAME="WORK"
    and  MEMNAME="YOURDATASET"
    and  (NAME="NAME" or upcase(substr(NAME,1,6))="SALARY";
quit;

proc sql;
  select  &VLIST.
  from    HAVE:
quit; 
   

However, I will point out again, that this is very symptomatic of the datastructure you have chosen.  In a normalised data structure your dataset's strcuture does not change, hence you can avoid all these types of problems, and work on processing data, rather than faffing about trying to work out what the structure of your data is.

Reeza
Super User

You can use the colon operator which will keep all variables starting with the prefix indicated. 

 

Data want;
Set have;
Keep name salary:;
Run;

Conversely, if your keeping almost all of the variables you can drop the ones you don't need instead. 

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!

How to Concatenate Values

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.

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
  • 4 replies
  • 3222 views
  • 2 likes
  • 3 in conversation