Apr 17, 2003 #1 ombina Programmer Jun 18, 2002 62 US Hello, I am trying to calculate cumulative total: Final output - Col1 Col2 ==== ==== 1 1 2 3 3 6 4 10 5 15 . . Thanks, Ricky
Hello, I am trying to calculate cumulative total: Final output - Col1 Col2 ==== ==== 1 1 2 3 3 6 4 10 5 15 . . Thanks, Ricky
Apr 17, 2003 1 #2 synapsevampire Programmer Mar 23, 2002 20,180 US You've 2 options, create a Running Total field which evaluates for every record and does not reset, and place it in the details. Or Create a formula like the following: whileprintingrecords; numbervar ThisValue :=ThisValue+{table.field} -k Upvote 0 Downvote
You've 2 options, create a Running Total field which evaluates for every record and does not reset, and place it in the details. Or Create a formula like the following: whileprintingrecords; numbervar ThisValue :=ThisValue+{table.field} -k
Apr 20, 2005 #3 LMRollins MIS Nov 14, 2000 120 US synapsevampire, I have a similar post like this and your 2nd option worked great. Thanks, Lori Upvote 0 Downvote