pop-up window

C

cassy01

is there anyway so that if i double click on a cell it will bring
pop-up window with the address ?
 
F

Frank Kabel

Hi
you could use a worksheet event. e.g. put the following code in your
worksheet module:
Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel
As Boolean)
MsgBox Target.Address
End Sub
 
Top