How do I get the last character of a string using an Excel function?
问题 How do I get the last character of a string using an Excel function? 回答1: No need to apologize for asking a question! Try using the RIGHT function. It returns the last n characters of a string. =RIGHT(A1, 1) 回答2: =RIGHT(A1) is quite sufficient (where the string is contained in A1). Similar in nature to LEFT, Excel's RIGHT function extracts a substring from a string starting from the right-most character: SYNTAX RIGHT( text, [number_of_characters] ) Parameters or Arguments text The string that