Hi kre30a, try the following but amend it to your needs
Sub SpaceRemoval()
Dim ws As Worksheet
Dim theRng As Range
Dim oC As Range
Set ws = Worksheets("Sheet1")
'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
'''Amend theRng to suit the column and cells to traverse through'''
'''This example sets theRng to be from A1 to the last cell used '''
'''in Column A. '''
Set theRng = ws.Range(ws.Cells(1, 1), ws.Cells(ws.Rows.Count, 1).End(xlUp))
For Each oC In theRng
oC.Value = Replace(oC.Value, " ", "")
Next oC
End Sub
Bookmarks