Which returns the word “time”. Working from the inside out, we use the SUBSTITUTE function to find all spaces in the text, and replace each space with 100 spaces: So, for example, with the text string “one two three” the result is going to look like this: With hyphens representing spaces for readability. Keep in mind that there will be 100 spaces between each word. Next, the RIGHT function extracts 100 characters, starting from the right. The result will look like this: Finally, the TRIM function removes all leading spaces, and returns the last word. Note: We are using 100 arbitrarily because that should be a big enough number to handle very long words. If you have some odd situation with super long words, bump this number up as needed.

Handling inconsistent spacing

If the text you are working with has inconsistent spacing (i.e. extra spaces between words, extra leading or trailing spaces, etc.) This formula won’t work correctly. To handle this situation, add an extra TRIM function inside the substitute function like so: This will normalize all spaces before the main logic runs.

Dave Bruns

Hi - I’m Dave Bruns, and I run Exceljet with my wife, Lisa. Our goal is to help you work faster in Excel. We create short videos, and clear examples of formulas, functions, pivot tables, conditional formatting, and charts.