How can I count the number of characters in a cell??

  • Thread starter Thread starter eluehmann
  • Start date Start date
E

eluehmann

How can I count the number of characters in a cell?? Assume no spaces
 
Hi

the LEN function will give you the length of the string, ie the number of
characters
e.g.
=LEN(A1)

Cheers
JulieD
 
Hi
=LEN(A!)

or if you want to ignore spaces try:
=LEN(SUBSTITUTE(A1," ",""))
 

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

Back
Top