Home |
Search |
Today's Posts |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
try this then:
Sub NoSpaces() Dim c As Range Application.ScreenUpdating = False Application.Calculation = xlCalculationManual For Each c In Range("apples") c = Replace(c, " ", "") Next Application.ScreenUpdating = True Application.Calculation = xlCalculationAutomatic End Sub -- Gary Keramidas Excel 2003 "J.W. Aldridge" wrote in message ... is there a quicker way to execute this? it's taking almost 5-10 minutes as is. thanx |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Delete spaces | Excel Discussion (Misc queries) | |||
Delete Variable spaces at beginning of a range | Excel Programming | |||
delete spaces | Excel Programming | |||
delete spaces | Excel Worksheet Functions | |||
Help copying a range with spaces to a range without spaces | Excel Programming |