I need to remove the last character from first word in excel.
For example I have the cell B1 with "Teas from Spain" and I need cell A1 to be "Tea from Spain".
Thank you
Use Replace:
=REPLACE(B1,FIND(" ",B1&" ")-1,1,"")
Try this in A1:
=LEFT(B1;FIND(" ";B1)-2)&MID(B1;FIND(" ";B1);999)
It should work like below: