VBA insert formula

jakobt

Active Member
Joined
May 31, 2010
Messages
337
VBA code not working:
defines the last row in a table
want to take the sum from cell E4 to the last row of the table (cell LR)?


Sub last()
dim lr as long
lr = activesheet.cells(ActiveSheet.rows.count, "B").End(xlup).Row
Range("E"& lr +3 ).value ="=sum(E4: & E & LR)"

end sub
 

Excel Facts

Excel Can Read to You
Customize Quick Access Toolbar. From All Commands, add Speak Cells or Speak Cells on Enter to QAT. Select cells. Press Speak Cells.
try this:
Code:
Dim lr As Long
lr = ActiveSheet.Cells(ActiveSheet.Rows.Count, "E").End(xlUp).Row
Range("E" & lr + 3).Value = "=sum(E4:E" & lr & ")"
 
Last edited:
Upvote 0
Actually, one more related query:

In cell last row + 7 I want to add a formula that the negative of cell lr +2 should be subtracted:

Want to add to the query:
Range("E" & LR + 7).value = "-E" & lr +2""
 
Upvote 0

Forum statistics

Threads
1,216,117
Messages
6,128,937
Members
449,480
Latest member
yesitisasport

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