BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
jiangmi
Calcite | Level 5

Hi, All,

I am a little confused that variable age2 is not showing up.

It will work if      'age2=age*1;'     was put behind     'set have;'   .

Can somebody tell me why?

Thanks.

Joe

data have;

input sex$ age;

datalines;

F 14

M 15

;

data male female;

set have;

if sex='M' then output male;

else if sex='F' then output female;

age2=age*1;

run;

1 ACCEPTED SOLUTION

Accepted Solutions
Reeza
Super User

Order of operations. Your output statement is before the calculation, so when SAS writes out the observation it hasn't been calculated yet.  

You do get the age2 variable but it is all missing.

View solution in original post

3 REPLIES 3
Reeza
Super User

Order of operations. Your output statement is before the calculation, so when SAS writes out the observation it hasn't been calculated yet.  

You do get the age2 variable but it is all missing.

jiangmi
Calcite | Level 5

Thanks.

Joe

naveen20jan
Obsidian | Level 7

Hi ,

You can use the below set of code ,by moving the age2 before the output statements.

data have;

input sex$ age;

datalines;

F 14

M 15

;

data male female;

set have;

age2=age*1;

if sex='M' then output male;

else if sex='F' then output female;

run;

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 3 replies
  • 1593 views
  • 0 likes
  • 3 in conversation