BookmarkSubscribeRSS Feed
Darpnew
Calcite | Level 5

Dear SAS users,

Could you please help me understand output of below program?

data work.passengers1;

if origpassengers = . then  origpassengers =100;

transpassengers = 100;

origpassengers =  totlapassengers = sum( origpassengers, transpassengers) + 0 ;

run;

proc print data = work.passengers1;

title 'check-1';

run;

output is:

origpassengers =0

transpassengers =100

totlapassengers = .

What i understand is that when pdv initialize all variables to missing, then we get first condition tset to true, hence origpassenger =100, then transpas is set to 100, but then how come value of totalpass is coming out to be missing (.) and why origpass has been set to 0.

Appreciate your help as always Smiley Happy

3 REPLIES 3
Darpnew
Calcite | Level 5

again, i just realised that totalpass value should also have been 200 instead of 100. Please explain with bit detail.

Steelers_In_DC
Barite | Level 11

I don't understand what you are trying to do here but this is where your problem is:

origpassengers =  totlapassengers = sum( origpassengers, transpassengers) + 0 ;

If you give an example of data and your desired solution I can help more.

data step1;

infile cards;

input orig ;

cards;

.

500

2

160

;

run;

data passengers1;

set step1;

if orig = . then  orig =100;

trans = 100;

total = sum( orig, trans);

run;

If you are adding the original in hopes to sum that's different, let me if this helps.

data passengers2;

set step1;

if orig = . then  orig =100;

trans = 100;

total = sum(orig,trans);

sum + total;

run;

Darpnew
Calcite | Level 5

It is a problem i came through while preparing for base sas certification, so I am not bringing this problem from any practicle reference / problem. But, I concede that there is some important concept which I am missing and I need to understand that.

sas-innovate-2024.png

Join us for SAS Innovate April 16-19 at the Aria in Las Vegas. Bring the team and save big with our group pricing for a limited time only.

Pre-conference courses and tutorials are filling up fast and are always a sellout. Register today to reserve your seat.

 

Register now!

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