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.

hackathon24-white-horiz.png

The 2025 SAS Hackathon Kicks Off on June 11!

Watch the live Hackathon Kickoff to get all the essential information about the SAS Hackathon—including how to join, how to participate, and expert tips for success.

YouTube LinkedIn

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