Remove before and after space

Russk68

Well-known Member
Joined
May 1, 2006
Messages
589
Office Version
  1. 365
Platform
  1. MacOS
Hi
I need to remove the numbers on each side of the string. Remove before first space and after last space. I have formulas to do each one but not both.
Before and after, below.
TIA!
2 Mac Viper Profile 16 bit Extended (2)
Mac Viper Profile 16 bit Extended
 

Excel Facts

Quick Sum
Select a range of cells. The total appears in bottom right of Excel screen. Right-click total to add Max, Min, Count, Average.
A somewhat shorter standard worksheet function option.

21 10 20.xlsm
AB
12 Mac Viper Profile 16 bit Extended (2)Mac Viper Profile 16 bit Extended
Extract Text
Cell Formulas
RangeFormula
B1B1=REPLACE(LEFT(A1,XMATCH(" ",MID(A1,SEQUENCE(LEN(A1)),1),,-1)-1),1,FIND(" ",A1),"")
 
Upvote 0
Here is another formula that will work on any version of Excel (as long as the text is less than 200 characters long)...
Excel Formula:
=TRIM(MID(SUBSTITUTE(A1," ",REPT(" ",200)),200,(LEN(A1)-LEN(SUBSTITUTE(A1," ",""))-1)*200))
 
Upvote 0

Forum statistics

Threads
1,214,979
Messages
6,122,552
Members
449,088
Latest member
davidcom

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top