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: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

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