That's a similar mechanism to what I'm using... the problem is I need to be able to start to finish return what place the 4th space is in without using multiple cells.
So far, I'm up to this formula:
=FIND(" ",B1,FIND(" ",B1,FIND(" ",B1,FIND(" ",B1)+1)+1)+1)
I was just hoping there was something a little cleaner... as I'm using nested versions of that formula combined with LEFTs, RIGHTs, and LENs to pull out the strings that are delineated by those spaces.
What's fun is my file actually uses more than one space between fields, so it actually has TRIMs mixed throughout the whole thing. My formulae are getting really LONG and confusing. :o I was hoping there was a shortcut I didn't know about.
Ah, well, I'm slowly getting it to work!
Example (pulling third text string):
=RIGHT(LEFT(TRIM(B1),FIND(" ",TRIM(B1),FIND(" ",TRIM(B1),FIND(" ",TRIM(B1))+1)+1)),FIND(" ",TRIM(B1),FIND(" ",TRIM(B1),FIND(" ",TRIM(B1))+1)+1)-(FIND(" ",TRIM(B1),FIND(" ",TRIM(B1))+1)))
Thanks for your help!