View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Mike H Mike H is offline
external usenet poster
 
Posts: 11,501
Default 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