data ds;
infile datalines;
input id$ name$ sal$;
datalines;
1 abc $25000
2 ced $32410
3 peu $41521
;
run;
i want for this program sum of salarty how can i get i used so many ways but its getting error .
plz rectify my problem
To begin, you will need to create salary as a numeric variable if you want to get its sum. Right now your program is creating it as a character variable. Here's a way to get started:
data ds;
infile datalines truncover;
input id $ name $ salary dollar8. ;
Then you can try to get sums.
To begin, you will need to create salary as a numeric variable if you want to get its sum. Right now your program is creating it as a character variable. Here's a way to get started:
data ds;
infile datalines truncover;
input id $ name $ salary dollar8. ;
Then you can try to get sums.
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
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.