Seperate last name from a cell with full name

  • Thread starter Thread starter Ty
  • Start date Start date
Assuming the cell only has a first and last name, you can use:

=MID(A1,FIND(" ",A1)+1,999)
 
Perfect
--
Thanks, Ty


Luke M said:
Assuming the cell only has a first and last name, you can use:

=MID(A1,FIND(" ",A1)+1,999)
--
Best Regards,

Luke M
*Remember to click "yes" if this post helped you!*
 
Back
Top