Worksheet change Event

Hashiru

Active Member
Joined
May 29, 2011
Messages
286
Hi All,

I have these code below that I want to change to worksheet change event

Sub Worksheet()
For Each Cell In Selection
Cell.Offset(0, -1) = Cell.Offset(0, -1) + Cell
Next
End Sub
 

Excel Facts

Best way to learn Power Query?
Read M is for (Data) Monkey book by Ken Puls and Miguel Escobar. It is the complete guide to Power Query.
I the code below is what I what to use to modify the user experience. I want to ensure that as soon as cells on column D changes the corresponding cells in column C should change using the same idea for the Cell.Offset(0,-1) = Cell.Offset(0, -1) + Cell

Private Sub Worksheet_Change(ByVal Target As Range)
If Intersect(Target, Range("D2:D10")) Is Nothing Then Exit Sub
Application.EnableEvents = False
'Set the values
ActiveCell.Offset(0, -1) = ActiveCell.Offset(0, -1) + ActiveCell
Application.EnableEvents = True
End Sub
<strike></strike>
 
Upvote 0

Forum statistics

Threads
1,223,894
Messages
6,175,254
Members
452,624
Latest member
gregg777

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