Hello. I'm new to SAS. I have a seemingly easy question but none of the conventional "create new variables" rules
seem to apply directly. Details below. I created a mini dataset to illustrate. Thank you! Anissa
First column has different types of tests - text format. Second column has results - numeric.
I want a third column with numeric value from column two, but only when column 1 is Test2.
| OUTCOME NAME | RESULT | New Variable with TEST 2 only? |
| TEST1 | 4 | . |
| TEST2 | 1 | 1 |
| TEST3 | 2 | . |
| TEST2 | 3 | . |
| TEST4 | 2 | 2 |
data want;
set have;
if upcase(outcome_name) = 'TEST2' then newvar=result;
run;
This should do the trick:
data want;
set have;
if upcase(outcome_name) = 'TEST2' then newvar=result;
run;
data want;
set have;
if upcase(outcome_name) = 'TEST2' then newvar=result;
run;
hI @anissak1 Welcome to SAS communities. I am afraid you accidentally marked your thank you comment as the solution. Please switch to the correct solution. Have a good time here.
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
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.
Ready to level-up your skills? Choose your own adventure.