View Single Post
  #2   Report Post  
Bob Phillips
 
Posts: n/a
Default Is it possible to display the number of characters in a cell

'This is worksheet event code, which means that it needs to be
'placed in the appropriate worksheet code module, not a standard
'code module. To do this, right-click on the sheet tab, select
'the View Code option from the menu, and paste the code in.


Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Not IsEmpty(Target.Value) Then
MsgBox Len(Target.Value)
End If
End Sub

--

HTH

RP
(remove nothere from the email address if mailing direct)


"Paul K." wrote in message
...
I would like to click on a cell and obtain a character count. Is it

possible?