Macroe Remove _ spaces in Cell

jakobt

Active Member
Joined
May 31, 2010
Messages
337
I have a column with:

239_
240__
250
_B227


Some times a space is included before the number sometimes a space or 2 spaces included after the number.

Can I develop a macro which run though my selected cells and remove all spaces and only leave the Number and Letter.
 

Excel Facts

Waterfall charts in Excel?
Office 365 customers have access to Waterfall charts since late 2016. They were added to Excel 2019.
With the cells selected, run this macro:

Code:
Public Sub RemoveSpaces()

Selection.Value = Evaluate("IF(ROW(1:" & CStr(Selection.Rows.Count) & "),TRIM(" & Selection.Address & "))")

End Sub

WBD
 
Upvote 0
and remove all spaces

Hi, have you considered a manual Find|Replace

i.e. find a space and replace with nothing with match entire cell contents not checked.

If you specifically needed code you could get 99% of if by recording the above actions with the macro recorder.
 
Upvote 0

Forum statistics

Threads
1,216,028
Messages
6,128,392
Members
449,445
Latest member
JJFabEngineering

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