Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

counting characters in a cell 2

Status
Not open for further replies.

dreadnaught

Technical User
Aug 1, 2001
59
US
I am looking for the formula to count the number of characters in a specific cell. Example a cell containing "HELLO" would return a value of 5. Can anyone help?
 
if cell A1 contained "Hello" then this formula will return the character count

in B1

=len(a1)
 
Use

=LEN(text)

where text is the reference to the cell containing the text string you want to count.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top