In some cases, you may need to remove the internal spaces from strings, such as remove all spaces, remove leading spaces, trailing spaces, or the extra spaces. In this article. I introduce some tricks on solving this task in Excel.
If you want to remove all spaces from a string, just use below formula:
Select a cell where you will put the result, and type this formula =SUBSTITUTE(A2,” “,””), and press Enter key, then drag the auto fill handle over the cells which need this formula.
Remove Extra Spaces From String
If you just want to remove the extra space, leading spaces and the trailing spaces from strings, you can apply this formula:
Select a cell where you will put the result, and type this formula =TRIM(A2), press Enter key, and then the drag the auto fill handle over the cells which need this formula.