Hi,
I have a workbook functioning as a template with several sheets, one of which with cell references to the others. I need to copy this sheet to other workbooks, which have the same structure as the template. However, upon pasting it, every cell of the template sheet gets a reference to the template file, which isn't wished. What I do need is an exact copy of the template sheet, with no further references added.
Here's the code snippet I use so far:
"Export COPA" in sNameCalcT5 is the template sheet, which needs to be inserted in sFilename.
Greets, Chris
I have a workbook functioning as a template with several sheets, one of which with cell references to the others. I need to copy this sheet to other workbooks, which have the same structure as the template. However, upon pasting it, every cell of the template sheet gets a reference to the template file, which isn't wished. What I do need is an exact copy of the template sheet, with no further references added.
Here's the code snippet I use so far:
Code:
Workbooks.Open Filename:=sFolCalc & "\" & sFilename, UpdateLinks:=0
Sheets("Export COPA").Delete ' Delete old sheet
Windows(sNameCalcT5).Activate ' Copy new sheet
ActiveSheet.Protect Contents:=True
Sheets("Export COPA").Copy Before:=Workbooks(sFilename).Sheets(9), UpdateLinks:=0
"Export COPA" in sNameCalcT5 is the template sheet, which needs to be inserted in sFilename.
Greets, Chris