Hi Chris,
OK, I think this should work now. I tested on a small sample because it keeps asking me for the location of the add-in you have on your system. So I didn't get a chance to run it on the whole workbook, but let me know if still is not working.
abousetta
Option Explicit
Option Base 1
Sub test2()
With Application
.ScreenUpdating = False
.DisplayStatusBar = False
.EnableEvents = False
.Calculation = xlCalculationManual
End With
Dim sh As Integer, arrCol, x As Integer, c As Range
For sh = 1 To Sheets.Count
arrCol = [{"A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R"}]
For Each c In Sheets(sh).UsedRange
If c.HasFormula Then
If Mid(c.Formula, 10, 14) = "CurFcstBudRate" Then
c.Formula = "=" & Mid(c.Formula, 26, Len(c.Formula) - 29)
End If
End If
Next
Next
With Application
.DisplayStatusBar = True
.EnableEvents = True
.Calculation = xlAutomatic
End With
End Sub
Bookmarks