Yes. Suppose you want the code to run if the user clicks on cell B5.
Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel
As Boolean)
If Target.Address = "$B$5" Then
'do something
End If
End Sub
In he VB Editor put this in the worksheet's module.
Hth,
Merjet
> If Target.Address = "$B$5" Then
> 'do something
> End If
You probably want to set Cancel = True in this code:
If Target.Address = "$B$5" Then
'do something
Cancel = True
End If

Signature
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com
(email address is on the web site)
> Yes. Suppose you want the code to run if the user clicks on cell B5.
>
[quoted text clipped - 9 lines]
> Hth,
> Merjet