M MGumbrell Registered User. Local time Today, 23:25 Joined Apr 22, 2005 Messages 129 Oct 3, 2008 #1 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
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
chergh blah Local time Today, 23:25 Joined Jun 15, 2004 Messages 1,414 Oct 3, 2008 #2 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
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
M MGumbrell Registered User. Local time Today, 23:25 Joined Apr 22, 2005 Messages 129 Oct 3, 2008 #3 Thank you I will give that a try. Regards, Matt