Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi,
The code below does not work for some reason. This procedure is in worksheet "Sheet1" Range("g46:h46") is two merged cells, perhaps this is the reason? It is validated to have either "yes" or "no" Thank you, Greg Private Sub Worksheet_SelectionChange(ByVal Target As Range) If Intersect(Selection, Range("g46:h46")) Is Nothing Then Exit Sub If Not Intersect(Selection, Range("g46:h46")) Is Nothing Then If Range("g46") = "NO" Then Sheets("Detail").Activate Sheets("Detail").Range("b13:A43").BorderAround _ ColorIndex:=3, Weight:=xlThick MsgBox "You may overwrite dates here" ,, "Optional" Sheets("Detail").Range("b13:A43").Borders.LineStyl e = xlLineStyleNone Sheets("Sheet1").Activate End If End If End Sub |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Where?Worksheet code module or Worksheet_SelectionChange event han | Excel Worksheet Functions | |||
Worksheet_SelectionChange Problem | Excel Discussion (Misc queries) | |||
Worksheet_SelectionChange not working | New Users to Excel | |||
Re : Excel event handler Worksheet_SelectionChange | Excel Programming | |||
Re : Excel event handler Worksheet_SelectionChange | Excel Programming |