Hello again! I have the following disabled:
Application.Calculation = xlCalculationManual
Application.ScreenUpdating = False
Application.EnableEvents = False
and my macro is doing the following to the active sheet:
Cells.Replace What:=Existing_Workbook_Name, Replacement:=New_Workbook_Name, LookAt:=xlPart, _
SearchOrder:=xlByRows, MatchCase:=False, SearchFormat:=False, _
ReplaceFormat:=False
Is there any way to accomplish this faster? It is far too slow currently. Also, the replacements are all part of VLOOKUP() formula present within Rows 1 - 450, and Columns N:W of the worksheet.
Application.Calculation = xlCalculationManual
Application.ScreenUpdating = False
Application.EnableEvents = False
and my macro is doing the following to the active sheet:
Cells.Replace What:=Existing_Workbook_Name, Replacement:=New_Workbook_Name, LookAt:=xlPart, _
SearchOrder:=xlByRows, MatchCase:=False, SearchFormat:=False, _
ReplaceFormat:=False
Is there any way to accomplish this faster? It is far too slow currently. Also, the replacements are all part of VLOOKUP() formula present within Rows 1 - 450, and Columns N:W of the worksheet.