LEN
Returns the length of the string.
Syntax
=LEN(string)
Arguments
Argument | Type | Description |
---|---|---|
string | String | The string to find the length of |
Examples
=LEN("Hello World!")
→12
=LEN(@"Property 1")
→7
Returns the length of the string property called "Property 1"
_To get the length of an array, use COUNT_
Updated 17 days ago