pop-up window

  • Thread starter Thread starter cassy01
  • Start date Start date
C

cassy01

is there anyway so that if i double click on a cell it will bring
pop-up window with the address ?
 
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
 

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

Back
Top