J
J.W. Aldridge
Got this code....
Doesnt always work for some reason. Any alternate way to put this? (Or
is something wrong with it?)
Sub eat_spaces()
Dim c As Range
Application.ScreenUpdating = False
Application.Calculation = xlCalculationManual
For Each c In Range("G2:T1500")
c = Replace(c, " ", "")
Next
Application.ScreenUpdating = True
Application.Calculation = xlCalculationAutomatic
End Sub
Doesnt always work for some reason. Any alternate way to put this? (Or
is something wrong with it?)
Sub eat_spaces()
Dim c As Range
Application.ScreenUpdating = False
Application.Calculation = xlCalculationManual
For Each c In Range("G2:T1500")
c = Replace(c, " ", "")
Next
Application.ScreenUpdating = True
Application.Calculation = xlCalculationAutomatic
End Sub