I have a dataset that is organized by a variable called daily_grouping. I would like a running total based on the daily_grouping. For example, the following:
Daily_Grouping | Amt |
104095512 | 1 |
104095512 | 3 |
104095512 | 4 |
104095512 | 5 |
104095513 | 10 |
104095513 | 11 |
104095513 | 15 |
104095513 | 22 |
Would become:
Daily_Grouping | Amt | Run_Tot |
104095512 | 1 | 1 |
104095512 | 3 | 4 |
104095512 | 4 | 8 |
104095512 | 5 | 13 |
104095513 | 10 | 10 |
104095513 | 11 | 21 |
104095513 | 15 | 36 |
104095513 | 22 | 58 |
thanks in advance!
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
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.