pct and totalpct are in format percent
I have the following dataset
id report pct
434 ABC 30
145 CBD 29
156 1ABN 31
171 gdhd 10
I would like to have the cumulative total for pct as below
id report pct totalpct
434 ABC 30 30
145 CBD 29 59
156 1ABN 31 90
171 gdhd 10 100
Can anyone help? thank you.
data want;
set have;
totalpct + pct;
run;
data have;
input id report $ pct ;
tpct+pct;
datalines;
434 ABC 30
145 CBD 29
156 1ABN 31
171 gdhd 10
;
run;
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.