LEN

Returns the length of a given text (the number of characters)

Usage

LEN(text)

Parameters

text

(Required) The text for which to count the characters

Examples

Example With these variables Result

LEN(“Hello World”)

(None)

11

LEN(name)

name is "Alice"

5

More information

The LEN function counts all characters in the text, including spaces and special characters.