The LEN function returns the number of characters in the specified text.
Any spaces in the specified text are also counted as a character.
LEN( [ Text] )
Text is a string of text or a reference to some text.
Rule | Meaning |
---|---|
TEXT(CustomerNameTextBoxReturn) | The LEN function will count each character in the return value of the CustomerNameTextBox |
CustomerNameTextBoxReturn Value | Result of the LEN function |
---|---|
"Sandra" | 6 |
"John Smith" | 10 |