Sum Column

billandrew

Well-known Member
Joined
Mar 9, 2014
Messages
743
Not sure why this code would not work. The result is False.

Code:
Cells(1, 14) = Range("I" & Rows.Count).End(xlUp).Offset(1).FormulaR1C1 = "=sum(R2C:R[-1]C)"



It does work if I remove the cells(1,14) portion - however I am looking to place the result in a cell rather than at the end of the range.

If you could How can I place the sum in a MsgBox


Thanks
 

Excel Facts

Control Word Wrap
Press Alt+Enter to move to a new row in a cell. Lets you control where the words wrap.
How about
Code:
Dim rng As Range
Set rng = Range("C2", Range("C" & Rows.Count).End(xlUp))
Range("N1").Value = Evaluate("sum(" & rng.Address & ")")
MsgBox Evaluate("sum(" & rng.Address & ")")
 
Upvote 0
Glad to help & thanks for the feedback
 
Upvote 0

Forum statistics

Threads
1,215,379
Messages
6,124,608
Members
449,174
Latest member
ExcelfromGermany

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top