Add value to several cells at the same time

heideway

New Member
Joined
Jul 18, 2011
Messages
31
Office Version
  1. 365
Platform
  1. Windows
Hi,

I want to be able to select a number of cells, say J1, H5 and G6 (ctrl-click) and add a value to all 3 cells using VBA. eg I want to add 35 to each value in each cell selected.

Thanks in advance
Pete
 

Excel Facts

Waterfall charts in Excel?
Office 365 customers have access to Waterfall charts since late 2016. They were added to Excel 2019.
Try this

Code:
Sub AddEm()
Dim c As Range
For Each c In Selection
    c.Value = c.Value + 35
Next c
End Sub
 
Upvote 0
try this code
Code:
Sub Test()
Dim C As Range
For Each C In Selection
    C.Value = C.Value + 35
Next C
End Sub
 
Upvote 0
Thanks once again fro the quick response.

Hopefully one day I will be able to post something that someone can find useful.

Pete
 
Upvote 0

Forum statistics

Threads
1,224,586
Messages
6,179,711
Members
452,939
Latest member
WCrawford

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