Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
How do I sum a column of data in a macro?
Assume I have a worksheet and cells C1 through C20 have numbers. How can I get the sum of those numbers without a loop? I tried Total = Sum(Range("C1").End(xlDown)) But got an error that Sum is not defined as a funtion. DG |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
On Oct 5, 6:37 pm, "DG" wrote:
How do I sum a column of data in a macro? Assume I have a worksheet and cells C1 through C20 have numbers. How can I get the sum of those numbers without a loop? I tried Total = Sum(Range("C1").End(xlDown)) But got an error that Sum is not defined as a funtion. DG Try Total=WorksheetFunction.Sum(Range("C1",Range("C1") .End(xlDown)) |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Sweet.... Works like a charm.
Thanks DG wrote in message oups.com... On Oct 5, 6:37 pm, "DG" wrote: How do I sum a column of data in a macro? Assume I have a worksheet and cells C1 through C20 have numbers. How can I get the sum of those numbers without a loop? I tried Total = Sum(Range("C1").End(xlDown)) But got an error that Sum is not defined as a funtion. DG Try Total=WorksheetFunction.Sum(Range("C1",Range("C1") .End(xlDown)) |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Okay, now I have a question for the experts.
What are the pros/cons/differences between: Total=WorksheetFunction.Sum(...) and Total=Application.Sum(...) Thanks, I'm just trying to learn more about VBA programming. -pb |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
There is no difference.
"cubbybear3" wrote in message ups.com... Okay, now I have a question for the experts. What are the pros/cons/differences between: Total=WorksheetFunction.Sum(...) and Total=Application.Sum(...) Thanks, I'm just trying to learn more about VBA programming. -pb |
#6
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
There is no difference.
Not true; there is a difference when it comes to error handling. If you omit the "WorksheetFunction", you can trap the error in a Variant and test that with IsError. If you include "WorksheetFunction", you must trap a run-time error with an On Error statement. Sub AAA() Dim V As Variant V = Application.Sum(Range("A1:A3")) If IsError(V) = True Then Debug.Print "ERROR USING SUM" Else Debug.Print CStr(V) End If On Error Resume Next Err.Clear V = Application.WorksheetFunction.Sum(Range("A1:A3")) If Err.Number < 0 Then Debug.Print "ERROR USING SUM" Else Debug.Print CStr(V) End If End Sub -- Cordially, Chip Pearson Microsoft MVP - Excel Pearson Software Consulting www.cpearson.com (email on the web site) "Zone" wrote in message ... There is no difference. "cubbybear3" wrote in message ups.com... Okay, now I have a question for the experts. What are the pros/cons/differences between: Total=WorksheetFunction.Sum(...) and Total=Application.Sum(...) Thanks, I'm just trying to learn more about VBA programming. -pb |
#7
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Try
Total = Application.Sum(Range("C1").End(xlDown)) -- HTH Bob (there's no email, no snail mail, but somewhere should be gmail in my addy) "DG" wrote in message ... How do I sum a column of data in a macro? Assume I have a worksheet and cells C1 through C20 have numbers. How can I get the sum of those numbers without a loop? I tried Total = Sum(Range("C1").End(xlDown)) But got an error that Sum is not defined as a funtion. DG |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Search for a column based on the column header and then past data from it to another column in another workbook | Excel Programming | |||
Macro to paste data to a new column if previous column has data | Excel Programming | |||
Based on a condition in one column, search for a year in another column, and display data from another column in the same row look | Excel Programming | |||
Based on a condition in one column, search for a year in another column, and display data from another column in the same row look | Excel Discussion (Misc queries) | |||
Matching one column against another column of data to show the same amount of data. | Excel Worksheet Functions |