Text
Returns the number of characters in a text string, including spaces and special characters.
=LEN(text)textText string to count characters in
=LEN("Hello World")Returns 11 (including the space)
Result: 11
=LEN(A1)Counts characters in cell A1
Result: Character count
=IF(LEN(A1)>10, "Too long", "OK")Checks if text exceeds 10 characters
Result: Too long or OK
Our AI can generate tailored formulas based on your specific needs
Generate Custom Formula