Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
What little tidbit am I overlooking here.
rangeC selects the correct range. rSum is the correct cell (First empty cell below the last entry in col C) Returns #NAME error Also tried this but does not compile rSum.Formula = "=Sum("C2:C" & lr)" Thanks, Howard Option Explicit Sub summerup() Dim rangeC As Range Dim rSum As Range Dim lr As Long lr = Cells(Rows.Count, 3).End(xlUp).Row Set rangeC = Range("C2:C" & lr) Set rSum = Range("C" & lr + 1) 'rangeC.Select rSum.Formula = "=Sum(rangeC)" End Sub |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Summing a Column of Variable Length | Excel Programming | |||
Autosum a variable column length using VB | Excel Programming | |||
Sum a Column of Variable length | Excel Discussion (Misc queries) | |||
Sum a column of variable length? | Excel Discussion (Misc queries) | |||
Averaging a variable length column | Excel Programming |