My string is like; eg: A2 column : This is a test string.
Where I want to extract word \'is\'. I know I have to use MID function wi
Modify thy below formula and try:
=MID(A1,FIND(" ",A1,1)+1,FIND(" ",A1,FIND(" ",A1)+1)-FIND(" ",A1,1)-1)