Forum Discussion
Excel adding filename to formula when creating duplicate file copy
Excel adding original path and filename to formula referencing another worksheet within the same file when creating duplicate file copy
I have regular issues when creating copies of a file, where the formulas will seemingly randomly decide to reference the original file, rather than the Sheet and Cell within the new file. I need to create an end of month duplicate of each of my project files.
I use a Project_Details tab/worksheet in excel to contain header information and general info for a project. eg, Customer name and address, and Estimated Project Value or other figures I will use in calculations in multiple places in different tabs/worksheets throughout the workbook/file.
As these files are passed up to a manager for end of month records, I create a duplicate of my file with the year and month reference. However, this will occasionally and seemingly randomly update the reference formulas from (for example):
'Project_Details'!$C$12
to
'[c:\documents\Proj_1234-Client_ABC-2024.05]Project_Details'!$C$12
Where [c:\documents\Proj_1234-Client_ABC-2024.05] is the file for last month and is in the CURRENT file "c:\documents\Proj_1234-Client_ABC-Current". So the Current file now looks to the May 2024 file for info.
How do I stop this? Can I force Excel to not do this without having to Find and Replace file names in every copy of the file?
Is there an order that worksheets are copied and formulas updated when copying a formula that defaults to the original file reference if the referenced worksheet isn't in the new file yet?
- NikolinoDEGold Contributor
When creating a duplicate of an Excel file, it's common for Excel to sometimes create references to the original file, especially when the workbook has multiple interlinked worksheets. This can be particularly troublesome when these references should remain internal to the new file. Here are a few strategies to avoid or fix this issue:
Strategy 1: Disable Automatic External Reference Updates
One way to prevent Excel from converting internal references to external ones is to disable the automatic updating of external references before you make the copy:
- Go to File > Options.
- Select Advanced.
- Scroll down to the General section.
- Uncheck the option Update links to other documents.
Strategy 2: Copy Sheets within Excel
Another approach is to copy sheets within the same workbook and then save the workbook as a new file:
- Open your original workbook.
- Right-click on any sheet tab.
- Select Move or Copy.
- In the To book dropdown, choose (new book) and check the Create a copy checkbox.
- Save the newly created workbook with the new name.
Strategy 3: Use VBA to Clean Up References
You can use a VBA macro to go through your formulas and replace external references with internal ones.
Here is a VBA script that can help:
Vba Code is untested, backup your file first.
Sub ReplaceExternalLinks() Dim ws As Worksheet Dim cell As Range Dim formula As String Dim externalPath As String Dim internalReference As String externalPath = "[c:\documents\Proj_1234-Client_ABC-2024.05]" For Each ws In ThisWorkbook.Worksheets For Each cell In ws.UsedRange If cell.HasFormula Then formula = cell.Formula If InStr(formula, externalPath) > 0 Then internalReference = Replace(formula, externalPath, "") cell.Formula = internalReference End If End If Next cell Next ws End Sub
To use this macro:
- Press Alt + F11 to open the VBA editor.
- Go to Insert > Module.
- Copy and paste the above code into the module.
- Press F5 to run the macro.
This script searches for formulas containing the external file path and replaces them with internal references.
Strategy 4: Manual Copy with Relative References
If the above methods are not feasible, a more manual but sure way is to copy the content as values before creating the duplicate file:
- Open your original workbook.
- Copy the entire content of each worksheet.
- Paste the content as values (Paste Special > Values) into the same positions within the same workbook.
- Save the workbook with a new name.
- Restore the formulas from the original workbook.
This approach ensures that all the references are internal when you save the new workbook.
Strategy 5: Order of Copying Sheets
If the references are being converted because the referenced sheet doesn't exist in the new workbook yet, you can ensure that all referenced sheets are copied first:
- Start by copying the Project_Details sheet (or any other sheet containing references).
- Then copy the remaining sheets in the order they reference each other.
This can minimize the chance of Excel creating external references due to missing sheets during the copy process.
Conclusion
While there's no single solution that works perfectly for every situation, these strategies can help you prevent and correct the issue of Excel creating external references when duplicating files. Using a combination of these methods should help maintain internal references within your duplicated workbooks. The text and steps were edited with the help of AI.
My answers are voluntary and without guarantee!
Hope this will help you.
Was the answer useful? Mark as best response and Like it!
This will help all forum participants.