I have the following codes, may i know how to get the following remarks?
Any idea? Thanks.
data a;
input staff house car;
cards;
1234 1 0
2234 5 1
3234 2 2
;
run;
Desired result
Staff Remarks
1234 1 house and 0 car
2234 5 house and 1 car
3234 2 house and 2 car
This is fairly simple to do in SAS. But I have to ask why you want a variable with a much more complicated string containing information that you already have in your dataset? 🙂
All you need is to concatenate the given data with some literals:
data want;
set have;
remarks = catx(' ',staff,'house and',car,'car');
/* or: remarks = left(staf) || ' house and ' || left(car) || ' car'; */
run;
This is the simplest way
data a;
input staff house car;
cards;
1234 1 0
2234 5 1
3234 2 2
;
run;
data b(drop=house car);
length staff 8 remarks $17;
set a;
remarks=cat(house,' house and ',car,' car');
run;
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!
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.
Ready to level-up your skills? Choose your own adventure.