Hi all,
Worksheet_SelectionChange event doesn't fire if I change the selection from a cell to an image.
Does it only fire if a cell is selected (it seems to be the case, but I thought I'd check)?
If it is the case it's only for cells, then any ideas on how to dynamically code for an image being selected?
A macro on each image wouldn't work in my case.
Thanks
Worksheet_SelectionChange event doesn't fire if I change the selection from a cell to an image.
Does it only fire if a cell is selected (it seems to be the case, but I thought I'd check)?
VBA Code:
Option Explicit
Private Sub Worksheet_Activate()
Application.EnableEvents = True
End Sub
Private Sub Worksheet_BeforeRightClick(ByVal Target As Range, Cancel As Boolean)
Cancel = True
End Sub
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
ActiveCell.Offset(0, 0).Activate
End Sub
If it is the case it's only for cells, then any ideas on how to dynamically code for an image being selected?
A macro on each image wouldn't work in my case.
Thanks