#1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 31
Default Sum in VBA

Hello

How can I sum up for example A4 through A16 and have the total appear in A17, i.e., A17 = SUM(A4:A16)

What is the VBA syntax to get the above.


Thank you,

Jen T.

  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2,337
Default Sum in VBA

Had you tried this in vba you would have gotten an error msg. Then select
the word sum and use f1 to find out how.

Sub sumem()
MsgBox Sum("g5:g10")
End Sub

--
Don Guillett
SalesAid Software

"Susan Hayes" wrote in message
...
Hello

How can I sum up for example A4 through A16 and have the total appear in

A17, i.e., A17 = SUM(A4:A16)

What is the VBA syntax to get the above.


Thank you,

Jen T.



  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 983
Default Sum in VBA

Here is the code:

ActiveSheet.Range("A17") = Application.Sum(ActiveSheet.Range("A1:A16"))

This inserts the total. Not a formula.

HTH

"Susan Hayes" wrote:

Hello

How can I sum up for example A4 through A16 and have the total appear in A17, i.e., A17 = SUM(A4:A16)

What is the VBA syntax to get the above.


Thank you,

Jen T.


  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 983
Default Sum in VBA

Sorry I got the range wong. It should read

ActiveSheet.Range("A17") = Application.Sum(ActiveSheet.Range("A4:A16"))

Oops...

"Jim Thomlinson" wrote:

Here is the code:

ActiveSheet.Range("A17") = Application.Sum(ActiveSheet.Range("A1:A16"))

This inserts the total. Not a formula.

HTH

"Susan Hayes" wrote:

Hello

How can I sum up for example A4 through A16 and have the total appear in A17, i.e., A17 = SUM(A4:A16)

What is the VBA syntax to get the above.


Thank you,

Jen T.


  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,298
Default Sum in VBA

The answers that you have so far "hard code" th erange to be summed

The example below adds some flexibility, although for the example I left out
error handling - you can do that :)

I have data in column C starting at line 4, my "test" adds the total

Option Explicit
Public Sub Test()
AddTotals 4, "C"
End Sub

Public Sub AddTotals(lFirstRow As Long, sColumn As String)

With Cells(lFirstRow, sColumn).End(xlDown).Offset(1, 0)

.FormulaR1C1 = "=SUM(R[-1]C:R" & lFirstRow & "C)"

End With


End Sub





"Susan Hayes" wrote:

Hello

How can I sum up for example A4 through A16 and have the total appear in A17, i.e., A17 = SUM(A4:A16)

What is the VBA syntax to get the above.


Thank you,

Jen T.


Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT +1. The time now is 02:10 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"