How do you count number of characters in a single cell

J

JE McGimpsey

one way:

=LEN(A1)

which includes space characters, or

=LEN(SUBSTITUTE(A1," ",""))

which doesn't.
 
Top