![]() |
Sum a variable length column
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 |
Sum a variable length column
On Wednesday, February 5, 2014 7:56:11 PM UTC-8, L. Howard wrote:
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 Was able to solve with this. Option Explicit Sub totColC() Dim lrC As Long lrC = Sheets("Sheet1").Cells(Rows.Count, 3).End(xlUp).Row Sheets("Sheet1").Range("C" & lrC + 1) = _ Application.WorksheetFunction.Sum(Sheets("Sheet1") .Range("C2:C" & lrC)) End Sub Howard |
All times are GMT +1. The time now is 04:52 PM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com