Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() The following is an example of data that i have to sum the columns. There can be one to many sets of data with each set of data sperated by an empty row. I have code that will lookup data within column B and will sum the column upto the first blank cell(see code below) but I now require Columns D & E to have a simular formula. Having just got used to "messing" with macros and reconfiguring them I was sure I would be able to crack and alter the code... 2 hours later, and its back to posting again.....Doh!!!! Many, many thanks in advance A B C D E AREA 1296.40m2 109611 2 TIE BAR 0.8M M/S 0.36 2 109612 4 TIE BAR 1.2M 1.08 12.8 109618 32 TIE BAR 1.8M 8.96 160 109624 24 TIE BAR 2.4M 6.96 168 Sub GetSum() Dim rng As Range, rng1 As Range Dim rng2 As Range, cell As Range Dim ar As Range Set rng = Range(Cells(2, 1), Cells(Rows.Count, 1).End (xlUp)) Set rng1 = rng.Offset(0, 1).SpecialCells(xlBlanks) Set rng2 = Range("B3") For Each ar In rng1.Areas Set cell = ar(1, 1) cell.Formula = "=Sum(" & _ Range(rng2, cell.Offset(-1, 0)).Address & ")" Set rng2 = cell.Offset(2, 0) Next End Sub |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Make Columns A&B on Sheet2 always equal Sheet1 table columns A&B | Setting up and Configuration of Excel | |||
Make Columns A&B on Sheet2 always equal Sheet1 table columns A&B | Excel Worksheet Functions | |||
Combine multiple columns into two long columns, Repeating rows in first column | Excel Discussion (Misc queries) | |||
Combine multiple columns into two long columns, Repeating rows in first column | Excel Discussion (Misc queries) | |||
Pivot Table Creating New Columns that Subtract Two Existing Columns | Excel Discussion (Misc queries) |