Extract right after first space in Excel and Google Sheets
=MID(A2,FIND(" ",A2)+1,256)
=MID(A2,FIND(" ",A2)+1,256)
=MID(A2,FIND(" ",A2)+1,256)
A2 = data cell
" " = criteria (space)
This formula will extract any value right after the first space and is most suitable for a text string containing two words. For example, first and last name. You can change the space (" ") to your criteria in the above formula
=MID(A2,FIND(" ",A2)+1,256)
A2 = data cell
" " = criteria (space)
This formula will extract any value right after the first space and is most suitable for a text string containing two words. For example, first and last name. You can change the space (" ") to your criteria in the above formula