SheetRocks
Documentation/Formulas/LEN

LEN

Returns the length of a given string.

Syntax

LEN(string)

Arguments

Argument Description Required
string The string whose length you want to find. Required

Examples

Get length of text string

=LEN("Hello World")
Result ⇒ 11

Get length of empty string

=LEN("")
Result ⇒ 0

Get length of cell content

=LEN(A1)
Result ⇒ 5
A
1 Hello

Related Functions

Other Text functions:


← Back to Formula Reference