Pinterest Pixel

Remove Extra Spaces from Selection Using Macros In Excel

If you want to quickly remove extra spaces at the start and end of your text, Excel... read more

Download Excel Workbook
Bryan
Posted on

Overview

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

Exercise Workbook:

Remove Extra Spaces from Selection Using Macros In Excel | MyExcelOnline

Download excel workbookRemove-Extra-Spaces-from-Selection.xlsm


These are our text that we want to clean up:

Remove Extra Spaces from Selection Using Macros In Excel

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

 

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

 

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

Remove Extra Spaces from Selection Using Macros In Excel

 

How to Remove Extra Spaces from Selection Using Macros In Excel

 

101 Macros Book

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

Remove Extra Spaces from Selection Using Macros In Excel | MyExcelOnline
Bryan

Bryan is a best-selling book author of the 101 Excel Series paperback books.

Get Video Training

Advance your Microsoft Excel & Office Skills with the MyExcelOnline Academy!

Dramatically Reduce Repetition, Stress, and Overtime!
Exponentially Increase Your Chances of a Promotion, Pay Raise or New Job!

Learn in as little as 5 minutes a day or on your schedule.

Learn More!