Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I would only like the Change Event to kick in when i make a change in Cells
J8:BL8. Programatically how would i write this please? Thanks John |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
one way:
Private Sub Worksheet_Change(ByVal Target As Excel.Range) If Not Intersect(Target, Range("J8:BL8")) Is Nothing Then 'Your code here End If End Sub In article , John wrote: I would only like the Change Event to kick in when i make a change in Cells J8:BL8. Programatically how would i write this please? Thanks John |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Cool, thanks
John "JE McGimpsey" wrote: one way: Private Sub Worksheet_Change(ByVal Target As Excel.Range) If Not Intersect(Target, Range("J8:BL8")) Is Nothing Then 'Your code here End If End Sub In article , John wrote: I would only like the Change Event to kick in when i make a change in Cells J8:BL8. Programatically how would i write this please? Thanks John |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Macro to work only on selected worksheets | Excel Discussion (Misc queries) | |||
Trying to work with User-selected non-contiguous ranges | Excel Programming | |||
Compare a selected Range with a Named range and select cells that do not exist | Excel Programming | |||
How to record macro to work on selected column/row? | Excel Programming |