Hi folks,
I'm trying to write a this workbook code that applies to all sheets.
If cell A4 is selected show the shape Note
Else dont show it
This is what I have below
its not working, any ideas![]()
Private Sub Workbook_SheetChange(ByVal Sh As Object, ByVal Target As Range) With Sh If Not Intersect(Target, "$A$4") Is Nothing Then Sh.Shapes("Notes").Visible = True Else Sh.Shapes("Notes").Visible = False End If End With bm_Safe_Exit: Application.EnableEvents = True End Sub
thanks
sl
Bookmarks