RIGHT counts characters from the last position in the text string -- position 1 is the rightmost character. It returns num_chars characters working leftward from that position. Spaces, hyphens, and special characters all count as one character each. Like
LEFT, the result is always a text string even when extracted characters look numeric -- wrap in VALUE if the result needs to participate in calculations. When the suffix length is fixed -- always 4 digits, always 3-character extension -- RIGHT needs only the text and the count. When the suffix starts after a delimiter whose position varies, combine RIGHT with
LEN and FIND: the total string length minus the position of the delimiter gives the number of characters to extract from the right. For extracting from the start of a string, LEFT is the counterpart. For extracting from anywhere in the middle,
MID with a start position is the right choice.