I have a city, state and zip in one cell that I would like to split into 3 cells. The problem is that some zip codes are 9 digits and others are 5. Also, the cities can sometimes be more than one word. The states are just the 2 letter code. Everything is separated by spaces.
When I use the Split function, it will split it up nicely, except for when the city is more than one word. The split function allows you to choose how many substrings you want it to return. However, it will always split it from left to right. If I could get it to split from right to left, I could set it to split into 3 substrings. Does anyone know if this is possible?