VBA remove spaces in cells

jakobt

Active Member
Joined
May 31, 2010
Messages
337
Is it possible to select a range of cells and run a macro.

The macro should remove 2 spaces entered in the end of each selected cell.
 

Excel Facts

Copy a format multiple times
Select a formatted range. Double-click the Format Painter (left side of Home tab). You can paste formatting multiple times. Esc to stop
try this:

Code:
Sub RemoveSpaces()
For Each cl In Selection
    If Right(cl.Value, 2) = "  " Then cl.Value = Left(cl.Value, Len(cl.Value) - 2)
Next
End Sub
 
Upvote 0
When running it the double space is not removed in the cells.

For instance cell A1:
Test__
(_ means space)

I select the cell A1 and run the macro, but it still has the same text ie. Test__
 
Upvote 0
They may not be normal space characters. Select one of the problem cells and run this code
Code:
Sub CheckChars()
  With Selection
    MsgBox Asc(Left(Right(.Value, 2), 1)) & "|" & Asc(Right(.Value, 1))
  End With
End Sub
What does the message box say?
 
Upvote 0

Forum statistics

Threads
1,215,493
Messages
6,125,134
Members
449,206
Latest member
burgsrus

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