VBA - sum formula - to add one cell everytime.

Ebraham

Board Regular
Joined
Mar 21, 2015
Messages
215
Hi ,


i have the formula as e4+g4 in one column

i want when i run the macro the formula should add one column e4+g4+i4

the next time when i run it should enter the formula as e4+g4+i4+k4 in the activecell. and so on.....
 

Excel Facts

Why are there 1,048,576 rows in Excel?
The Excel team increased the size of the grid in 2007. There are 2^20 rows and 2^14 columns for a total of 17 billion cells.
If the formula is in cell A4:

Code:
Sub addnplus2colref()
Range("a4").Formula = Range("a4").Formula & "+" & Range(Mid(Range("a4").Formula, InStrRev(Range("a4").Formula, "+") + 1, 255)).Offset(0, 2).Address(0, 0)
End Sub
 
Upvote 0

Forum statistics

Threads
1,203,514
Messages
6,055,840
Members
444,828
Latest member
StaffordStag

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