Clicking on a Cell

K

kirkm

Can clicking on a cell cause some text to appear in the status bar?
That's a single click (I'm already using double click).

Thanks - Kirk
 
M

Mike H

You could use the selection_change event

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Application.StatusBar = Target.Text
End Sub


Mike
 
K

kirkm

On Wed, 23 Jul 2008 02:47:01 -0700, Mike H

Thanks Mike, That did it.

Why didn't I see that myself !!

Cheers - Kirk
 

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

Similar Threads

Auto-Insert 5
Status Bar Message 1
Excel Cell Comments 6
Clicking a picture 6
VBA CODE HELP! 0
Entering a hyphen 2
VBA - JumpTo Specific Row 6
Get line no from right click menu ("Cell") 5

Top