If you want to quickly remove extra spaces at the start and end of your text, Excel Macros will do that for you! It is very similar to the TRIM formula as well.

Make sure your Excel has the Developer Tab enabled following this tutorial.

I explain how you can do this below step by step!

What does it do?

Removes spaces at the start and end from your selection

Copy Source Code:


Sub RemoveExtraSpacesFromSelection()

Dim range As Range
Dim cell As Range

Set range = Selection

'loop through each cell and trim them
For Each cell In range
If Not IsEmpty(cell) Then
cell = Trim(cell)
End If
Next cell

End Sub

Final Result: 

Remove Extra Spaces from Selection Using Macros In Excel | MyExcelOnline

Exercise Workbook:

YouTube video
Remove Extra Spaces from Selection Using Macros In Excel | MyExcelOnline

DOWNLOAD EXCEL WORKBOOK


These are our text that we want to clean up:

Remove Extra Spaces from Selection Using Macros In Excel | MyExcelOnline

STEP 1: Go to Developer > Code > Visual Basic

Remove Extra Spaces from Selection Using Macros In Excel | MyExcelOnline

 

STEP 2: Paste in your code and Select Save. Close the window afterwards.

Remove Extra Spaces from Selection Using Macros In Excel | MyExcelOnline

 

STEP 3: Let us test it out!

Open the sheet containing the data. Go to Developer > Code > Macros

Remove Extra Spaces from Selection Using Macros In Excel | MyExcelOnline

 

Make sure your text and macro are both selected. Click Run.

Remove Extra Spaces from Selection Using Macros In Excel | MyExcelOnline

 

With just one click, all of the unneeded extra spaces are all removed!

Remove Extra Spaces from Selection Using Macros In Excel | MyExcelOnline

 

How to Remove Extra Spaces from Selection Using Macros In Excel

 

101 Macros Book

HELPFUL RESOURCES:

JOIN OUR FREE EXCEL COURSES BELOW
Click here to access these FREE Excel courses!

 

If you like this Excel tip, please share itEmail this to someone

email

Pin on Pinterest

Pinterest

Share on Facebook

Facebook

Tweet about this on Twitter

Twitter

Share on LinkedIn

Linkedin