Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I currently use this workaround which works:
Private Sub Worksheet_Change(ByVal Target As Range) If Target.Column = 3 Then Target.Offset(0, 2).Select If Target.Count 1 Then Exit Sub If Intersect(Target, Range("E5:E35")) Is Nothing Then Exit Sub If Target.Value 1 Then '---continue sub I would like the input range in Column C to be limited to "C5:E35" e.g. If Intersect(Target, Range("C5:C35")) Then Target.Offset(0, 2).Select This gets me to desired cell in Column E, but then things bomb 'Runtime error 91' as soon as I input anything in "E5:E35" How to fix? -- David |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Controling the Worksheet_Change Event? | Excel Discussion (Misc queries) | |||
Setting up Worksheet_Change event | Excel Programming | |||
Worksheet_change event | Excel Programming | |||
Worksheet_Change Event | Excel Programming | |||
Worksheet_Change Event | Excel Programming |