S
Stuart Shay
Hello All:
I have a array which contains the totals for each month and from this array
I want to get a running total for each month
decimal[] month = new decimal[12];
month[0] = 254; (Jan)
month[1] = 78; (Feb)
month[2] = 34; (Mar)
ect ...
What is the best way I can easily obtain the Running Total for each month
decimal[] monTotal = new decimal[12];
monTotal[0] = 254; (Jan - Running Total)
monTotal[1] = 332; (Feb - Running Total)
monTotal[2] = 366; (Mar- Running Total)
Thanks
Stuart
I have a array which contains the totals for each month and from this array
I want to get a running total for each month
decimal[] month = new decimal[12];
month[0] = 254; (Jan)
month[1] = 78; (Feb)
month[2] = 34; (Mar)
ect ...
What is the best way I can easily obtain the Running Total for each month
decimal[] monTotal = new decimal[12];
monTotal[0] = 254; (Jan - Running Total)
monTotal[1] = 332; (Feb - Running Total)
monTotal[2] = 366; (Mar- Running Total)
Thanks
Stuart