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;

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

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