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.

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

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