SAS Procedures

Help using Base SAS procedures
BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
nicnad
Fluorite | Level 6

Hi,

I would like to have a column with concatenated values if one of the cell used to concatenate is not null.

How do I do the following?

data icoplib.icop_alerts4 (drop=CRITERIA_VALUE_in);

set icoplib.icop_alerts3 (rename=(CRITERIA_VALUE=CRITERIA_VALUE_in));

if risk_level not is null then do;

criteria_value = trim(criteria_value_in) || ' - ' ||trim(risk_level);

end;

else do;

criteria_value=trim(criteria_value_in);

end;

run;

Thank you for your help and time.

1 ACCEPTED SOLUTION

Accepted Solutions
ballardw
Super User

In data step

if not missing(risk_level) then do;

You might not need the if though.

The CATX function truncates blanks and places specified delimiter between strings.

 

data _null_;

risk_level='';

criteria_value_in = 'criteria';

criteria_value= catx('-',criteria_value_in,risk_level);

put criteria_value;

run;

View solution in original post

2 REPLIES 2
ballardw
Super User

In data step

if not missing(risk_level) then do;

You might not need the if though.

The CATX function truncates blanks and places specified delimiter between strings.

 

data _null_;

risk_level='';

criteria_value_in = 'criteria';

criteria_value= catx('-',criteria_value_in,risk_level);

put criteria_value;

run;

nicnad
Fluorite | Level 6

Works like a charm.

Thank you very much.

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
  • 5792 views
  • 0 likes
  • 2 in conversation