Date: Wed, 5 Jan 2005 07:41:09 -0800
Reply-To: Richard <heteroliu@GMAIL.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Richard <heteroliu@GMAIL.COM>
Organization: http://groups.google.com
Subject: Accumulated sum
Content-Type: text/plain; charset="iso-8859-1"
Hi,
A very stupid question...
If I have data look like this
number
---------
10
12
13
15
and I would like to add a column as accumulated sum for this field...
number acc
----------------
10 10
12 22
13 35
15 50
Can I do this in proc tabluate?
Thank you in advance.