In the following example, because of missing numeric data, using the plus sign to add horizontally across variables results in an overall missing value as well. However, using SAS's SUM function will display what I am expecting.
Because of that, in what circumstances if any would using a plus sign be more beneficial?
Thank you for your time.
data test;
x = 10;
y = .;
z = 7;
test1 = x+y+z;
test2 = sum(x,y,z);
label test1='x+y+z' test2='sum(x,y,z)';
run;
proc report data=test nowd;
run;
Hi,
One benefit of sum() is that you can use arrays:
data want;
array col{*};
result=sum(of col{*});
run;
Above assumes variables called col1-colx, not checked the code.
Then of course the missing to number addition, sometimes you want to get a result even if . + 2 = .
You said it yourself already. When you WANT the sum to be missing when any of the individual terms are missing.
Thank you. I just wanted to make sure I wasn't missing something crucial.
If I want to treat missing values essentially as 0s, then I can use SUM and be fine.
If I want to account for missing values, then I would use +.
Thanks again.
Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9. Sign up by March 14 for just $795.
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.
Ready to level-up your skills? Choose your own adventure.