Reputation: 49
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
Upvotes: 1
Views: 140
Reputation: 12008
Try this in A1:
=LEFT(B1;FIND(" ";B1)-2)&MID(B1;FIND(" ";B1);999)
It should work like below:
Upvotes: 2