Have a macro that makes copies of worksheets, something like a base worksheet copied for several regions. The worksheet is copied and renamed in a macro. Essentially
Copy Base Sheet (new name is something like "Base1"
Rename Base1 to Region1
Repeat for other regions
When the copy worksheet executes I get about 60 "A formula or sheet you want to move or copy contains the name '<lots of wierd names>' which already exists on the destination worksheet.
I do not see any of these names in the Name Manager.
Examples:
____thinkcellM0YAAAAAAAAAAA9 (it goes on with random-looking stuff
Several other thinkcell names
___123Graph_B
Several others containing 123Graph
_MatInverse_In
_Sort
_Table1_In1
These name warning/errors occur executing this statement:
Sheets(sSourceSheet).Copy after:=Sheets(asAfterSheet)
Really odd, these same errors occur copying different source sheets. That is, I can copy any of several different sheets in the workbook and get the same bunch of name errors.
What are these names, and how do I get rid of them?