Change Macro Start

MGumbrell

Registered User.
Local time
Today, 23:25
Joined
Apr 22, 2005
Messages
129
I have a Macro that starts when Ctrl+Shift+C is pressed.

I would also like this macro to start when the user clicks Range("S18") on ("Sheet1")

Can you please advise me.

Regards, Matt
 
use the selection change event:

Code:
Private Sub Workbook_SheetSelectionChange(ByVal Sh As Object, ByVal Target As Range)
If Sh.Name = "Sheet1" And Target.Address = "$S$18" Then
Call macro_name
End If

End Sub
 
Thank you

I will give that a try.

Regards, Matt
 

Users who are viewing this thread

Back
Top Bottom