navigating Cells in VBA without losing target for my offset

wobbles

New Member
Joined
Sep 15, 2011
Messages
6
Can anyone please tell me how i can change the content of one cell in a fixed location without losing reference to the cell that triggered the worksheet_change (target) because once i change it i want to act with the cell that triggered or nearby with .offset

when i try it my cell references go so wrong
 

Excel Facts

Lock one reference in a formula
Need 1 part of a formula to always point to the same range? use $ signs: $V$2:$Z$99 will always point to V2:Z99, even after copying
Something like

Code:
With Target
    Application.EnableEvents = False
    .Offset(3, 14).Value = "distant cell"
    Application.EnableEvents = True
End With

The Application.EnableEvents is in there so that changing the .Offset cell doesn't trigger another Worksheet_Change event.
 
Upvote 0
You don't need to select cells to perform actions on them, and even if you did, the Target cell wouldn't change.

Please explain what you're trying to do and post your existing code.
 
Upvote 0

Forum statistics

Threads
1,215,389
Messages
6,124,662
Members
449,178
Latest member
Emilou

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