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 |
---|---|
Len(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 |