BookmarkSubscribeRSS Feed
Uknown_user
Quartz | Level 8

I would like to write something like this:

 

data want;

set have (drop=pk_: fk_: bk_:);

run;


 

The problem occurs when there is no variable that starts with fk_, is it possible to set it conditionally (with out necessity to write macro that checks whether variable exists in a given file)? Thanks

2 REPLIES 2
Reeza
Super User
You can consider turning off the errors generated by the DROP/KEEP statements not listing, see the SAS Options list for the specific command. If you include that statement within the data step it gives a NOTE not an error. Or, as you noted, you can use macro logic. Or, you could use call execute/DO SUBL to generate your code conditionally based on the variables - similar to a macro.
Astounding
PROC Star

You can insert this line before your DATA step:

 

options dkricond=NoWarn;

 

Then after the DATA step, switch back to the one that you prefer:

 

options dkricond=Warn;

options dkricond=Error;

 

Think of this as Drop Keep Rename on Input Condition.

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