Double Click Cell to Run Macro

S

Steve H

Hello
This code will open a calendar when any cell is dbl clicked:

Private Sub Worksheet_BeforeDoubleClick _
(ByVal Target As Range, Cancel As Boolean)
OpenCalendar
Cancel = True
End Sub

How can I modify to only run if C4 or C6 is clicked?

Thanks!
 
J

James Ravenswood

Sorry Should have been in programming

Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel
As Boolean)
If Intersect(Target, Union(Range("C4"), Range("C6"))) Is Nothing Then
Exit Sub
OpenCalendar
Cancel = True
End Sub
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top