i'm new to SAS Visual Analytics and SAS Data Studio and I want to have a total sum of a column in every row.
My table looks like this...
ID/Amount
1/10
2/20
3/30
And my final table should be like this...
ID/Amount/New_Column
1/10/60
2/20/60
3/30/60
Is their any function or must I work with DATA Steps?
Thank you...