From: Harlan Grove on
Chip Pearson <c...(a)cpearson.com> wrote...
>Another way is
>
>=MID(A1,FIND(" ",A1)+1,999)
....

Good to use the delimiter. Possible to dispense with the 999.

=REPLACE(A1,1,FIND(" ",A1),"")