count digits within cell

A

apostate2

I want to create a forumula in B1 that will sum up how many letters I have
entered into A1. There will never be more than five digits in A1. I frankly
don't know where to begin.

example: A1 = MTW
 
G

Guest

Hi
You may also try LEN(TRIM(A1)) which will count the characters without any
trailing spaces that may have been inadvertantly left in the cell.
 
Top