LEN takes just one argument,text.
LEN will also count characters in numbers, but number formatting is not included.
RIGHT returns the text to therightof that position.Full explanation here.
For example, given the character (U+1F642) as input, the LEN function returns two.
For these characters, the LEN function returns a length of one.
For these characters, the LEN function returns a length of two.
For example, =RIGHT(“apple”,3) returns “ple”.
For example, =LEFT(“apple”,3) returns “app”.
For example, =MID(“apple”,2,3) returns “ppl”.