Using an MS Excel formula (No VBA/Macro), I would like to extract between the Nth and Nth characters and/or letters in a string. Example: I have text in Columns A2 and A3, I would like to extract text located between the 4th space and 9th space in each of the following strings.
Column A2: Johnny went to the store and bought an apple and some grapes
Column A3: We were not expecting to go home so early but we had no other choice due to rain
Results:
Column A2: store and bought an apple
Column A3: to go home so early
"&SUBSTITUTE(SUBSTITUTE(A1,",","",2)," ","",10)&""&SUBSTITUTE(MID(A1,FIND("|",SUBSTITUTE(A1,",","|",2)),LEN(A1))," ","")&"