BookmarkSubscribeRSS Feed
thegrad
Calcite | Level 5

ativeHey All,

I've got a proc sql statement where i'm selected a report_date and amount, can anyone tell me how to also include a cumulative version of this?

Thanks,

1 REPLY 1
arnouxvr
Fluorite | Level 6

Take a look at the code below.

I am assuming that date will be unique otherwise replace it with a unique row identifier.

data temp;

  input date : date9. amt;

  format date date9.;

  datalines;

1JAN2013 45

2JAN2013 31

3JAN2013 65

  ;

run;

proc sql;

  select a.date, a.amt, (select SUM(b.amt) from temp as b where b.date <= a.date) as running_total

   from temp as a

  order by a.date;

quit;

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 1 reply
  • 9673 views
  • 0 likes
  • 2 in conversation