Hello,
I'm tring to run Macro1 when any one cell (and no others) between A35 and A600 is activated I have Managed to either do a single cell, as below:
Private Sub Worksheet_SelectionChange(ByVal Target As Excel.Range)
If Target.Column = 1 And Target.Row = 35 Then Macro1
End Sub
Or the whole column, as below
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Target.Column = 1 And Target.Count = 1 Then Call Macro1
End Sub
But I need to run it from any of the cells between A35 & A600.
Does anybody know how to achieve this please?
Thanks in advance
Craig
Configuration: Windows Vista Internet Explorer 7.0
See if this gets you in the right direction. Hope it helps!
|
Thats absolutely perfect, thank you very much.
|