LENB(text)
=LEN("apple")
The function returns the number of characters in a string. For example, this returns 5 because the string "apple" has five characters.
=LEN("apple ")
The function also counts spaces when determining the length of a string. For example, this returns 6 because the string "apple " has six characters.
=RIGHT(A1,LEN(A1)-FIND(char,A1))
The function can be used in combination with other Sourcetable functions. For example, this returns the text to the right of the character "A" in the string "apple" and returns the text "APPLE".
The LENB function is used to calculate the number of bytes used to store characters in a string. It is a useful tool for determining the size of a string, allowing for more efficient data storage.