Moving Worksheets From One File to Another

D

dcapps

Hello All,
I am attempting to move worksheets (which contain formulas) from one file
(we'll call it File #1) to another (File #2 obviously), and unfortunately,
the result in File #2 is something that reads ='File #1'A6 (just an example).
How can I move worksheets from one file to another without including the
references to the original spreadsheet? In short, how can I get the cell to
read =A6 after it has been moved to the new document? I would truly
appreciate any help anyone would be willing to offer. Thanks so much, and
have a great day!
 
D

Dave Peterson

If your formulas on the original worksheet point to other sheets in the original
workbook, then those formulas will continue to point to that original workbook
after you move it.

You have at least a couple of work-arounds.

#1. Do the move and correct the formulas (a bunch??) of edit|Replaces to remove
the old workbook and old worksheet's name.

#2. Use Edit|Links|Change Source (xl2003 menus) to point to the new workbook
(you'll have to save this new workbook first, though).

#3. Change all the formulas on the original sheet to strings:
Select all the cells
edit|replace
what: = (equal sign)
with: $$$$$=
replace all

Move the sheet

And change all the strings back to formulas:
Select all the cells
edit|replace
what: $$$$$=
with: =
replace all
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top