Is there any way to copy Sheet1 in WB1 to Sheet1 to in WB2 and prevent the "external links" from pointing back to the original file?

code I have now is ...

srcFile = WB1
destFile = WB2
sheetname = Sheet1

' activate the WB, select the sheet & copy all valid data
Windows(srcFile).Activate
Sheets(sheetName).Select

ActiveSheet.Range("A1").Select
ActiveSheet.Range(Selection, ActiveCell.SpecialCells(xlLastCell)).Select
Selection.Copy

' destination
Windows(destFile).Activate
ActiveSheet.Range("A1").Select
Sheets(sheetName).Paste

Thanks,