How can I delete the first word in column A?
Thank you
You can use a formula in some other column:
=MID(A1,FIND(" ",A1&" ")+1,255)
Then copy the results and do a paste special/values over the original.
There are other ways, using VBA and macros, if this is not sufficient.
--ron