I have a text string with four spaces in it. I can find the location of the first space easy enough.
=FIND(" ",B1) (returns where the first space is)
Second space is a little trickier, but I figured out a way...
=FIND(" ",B1)+FIND(" ",RIGHT(B1,LEN(B1)-FIND(" ",B1)))
I'm hoping there's an easier way that I don't know of... because taking this to the 3rd & 4th space is gonna be really ugly.
Any ideas?