Apr 17, 2003 #1 ombina Programmer Joined Jun 18, 2002 Messages 62 Location 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 Joined Mar 23, 2002 Messages 20,180 Location 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 Joined Nov 14, 2000 Messages 120 Location US synapsevampire, I have a similar post like this and your 2nd option worked great. Thanks, Lori Upvote 0 Downvote