minibluedragon
2010-04-01 16:14:32 UTC
The problem is that it takes AGES to execute; probably because it's a loop script.
Can anybody provide me with a working and fast replacement pretty please?
Sub ReplaceDashes()
Worksheets("Scraped Data").Range("A1:A300").Select
Dim c As Range
For Each c In Selection
For x = 1 To 500
c.Formula = Application.WorksheetFunction.Substitute(c.Formula, "-", "/")
Selection.NumberFormat = "??/??"
Next x
Next c
End Sub