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
again, i just realised that totalpass value should also have been 200 instead of 100. Please explain with bit detail.
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;
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.
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!
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.