![]() |
Sum up
Hi ... here's a simple question, I'm sure.
In a For Next loop, I need to have myRange(i) set to be the sum of the cell above it up until row 26. How should I write the line of code for this? A sample of the data is below. Thanks, Mike. A B C D 1 2 3 4 <== This would be row 26 3 1 4 1 .. . . . .. . . . .. . . . 4 3 1 1 2 2 4 3 13 8 12 9 <== sum will go in this row. |
Sum up
set rng = Range(cells(26,myrange(i).column),myrange(i).offse t(-1,0))
myRange(i).Value = Application.Sum(rng) -- Regards, Tom Ogilvy Mike wrote in message ... Hi ... here's a simple question, I'm sure. In a For Next loop, I need to have myRange(i) set to be the sum of the cell above it up until row 26. How should I write the line of code for this? A sample of the data is below. Thanks, Mike. A B C D 1 2 3 4 <== This would be row 26 3 1 4 1 . . . . . . . . . . . . 4 3 1 1 2 2 4 3 13 8 12 9 <== sum will go in this row. |
All times are GMT +1. The time now is 06:12 PM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com