Simple formula in VBA problem

JimM

Well-known Member
Joined
Nov 11, 2003
Messages
743
Hi
It's been a while since I've played with VBA and obviously much more rusty than I thought!
Trying to put a simple formula in a macro and it's not liking the syntax (highlights red in VBA editor) any ideas why

Range("E" & lastrow + 1).Formula = "=Sum(E2:E" & lastrow ")"

All I'm trying to do is select the cell after the last item in column E and add up that column (excluding the title)
Lastrow variable is working properly
Thanks
 

Excel Facts

Difference between two dates
Secret function! Use =DATEDIF(A2,B2,"Y")&" years"&=DATEDIF(A2,B2,"YM")&" months"&=DATEDIF(A2,B2,"MD")&" days"
You are missing an "&", i.e.
Range("E" & lastrow + 1).Formula = "=Sum(E2:E" & lastrow & ")"
 
Upvote 0
Solution
You are welcome.
I have been there myself. Sometimes you stare at an issue for so long, you miss the obvious, and it is good to get a second set of eyes on it!
Glad I was able to help!
 
Upvote 0

Forum statistics

Threads
1,216,106
Messages
6,128,863
Members
449,473
Latest member
soumyahalder4

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