Clicking on a Cell
You could use the selection_change event
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Application.StatusBar = Target.Text
End Sub
Mike
"kirkm" wrote:
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
|