Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.newusers
Mhz Mhz is offline
external usenet poster
 
Posts: 1
Default Getting Sheets Copied From One Workbook to Another Without ....?


Hello, I have a situation where I want to move 3 sheets from one
workbook to another. The Problem is that the sheets appears to carry
their File Path with them creating a Problem for my formulas within the
destination sheet..

Is there a way to keep the Formulas in tact to represent the
destination sheet?

The Workbooks have the same Data, but 3 sheets from the source workbook
need to be inserted in the destination workbook without paths in the
formulas leading back to the source workbook (file).

eg.

Source workbook sheet1 A1 Reads:

=IF(DAY14!B330,DAY14!C33,"")

When it is copied to the Destination Worksheet it Reads:

=IF('[JULY CALLS CREATION BU9 TESTING.xls]DAY14!B330,'[JULY CALLS
CREATION BU9 TESTING.xls]DAY14!C33,"")

I modified the above formula slightly to remove the Reference errors,
but I just want to show basically what is happening...

Thanks for any help here...


--
Mhz
------------------------------------------------------------------------
Mhz's Profile: http://www.excelforum.com/member.php...o&userid=35980
View this thread: http://www.excelforum.com/showthread...hreadid=561798

  #2   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 1
Default Getting Sheets Copied From One Workbook to Another Without ....?


Not sure what happens with the source spreadsheet when you export the 3
sheets. Depending on this, you may be able to use SAVE AS, then delete
the sheets you don't want, rather than try to export the ones you want
to keep. This should solve the problem, but it will depend on what you
want to do with the source sheet after the export.

Matt


--
Mallycat
------------------------------------------------------------------------
Mallycat's Profile: http://www.excelforum.com/member.php...o&userid=35514
View this thread: http://www.excelforum.com/showthread...hreadid=561798

  #3   Report Post  
Posted to microsoft.public.excel.newusers
Max Max is offline
external usenet poster
 
Posts: 9,221
Default Getting Sheets Copied From One Workbook to Another Without ....?

Some thoughts ..
.. The Problem is that the sheets appears to carry
their File Path with them creating a Problem
for my formulas within the destination sheet [book]


Think it's because the formulas on the sheets within the source book to be
moved over are referencing other sheets in the source book

Is there a way to keep the Formulas intact to represent the
destination sheet?


Try tinkering in this way ..

First, ensure that all dependent sheetnames referenced by the formulas
within the sheets to be moved over, eg: Day14, etc actually *exist* within
the destination book before proceeding ..


In the source book,
(Do this one sheet at a time)

Select the entire sheet to be moved
Click Edit Replace
Find what: =
Replace with: zzzzz
Click Replace All
(this effectively "neutralizes" all formulas on the sheet)

Then move the sheet over to the destination book,
and reverse the process ..

Select the entire sheet (which is copied over)
Click Edit Replace
Find what: zzzzz
Replace with: =
Click Replace All
(Array formulas, if any, would need to be re-entered using CSE & re-filled)

Repeat for next sheet ...
--
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---
"Mhz" wrote:
Hello, I have a situation where I want to move 3 sheets from one
workbook to another. The Problem is that the sheets appears to carry
their File Path with them creating a Problem for my formulas within the
destination sheet..

Is there a way to keep the Formulas in tact to represent the
destination sheet?

The Workbooks have the same Data, but 3 sheets from the source workbook
need to be inserted in the destination workbook without paths in the
formulas leading back to the source workbook (file).

eg.

Source workbook sheet1 A1 Reads:

=IF(DAY14!B330,DAY14!C33,"")

When it is copied to the Destination Worksheet it Reads:

=IF('[JULY CALLS CREATION BU9 TESTING.xls]DAY14!B330,'[JULY CALLS
CREATION BU9 TESTING.xls]DAY14!C33,"")

I modified the above formula slightly to remove the Reference errors,
but I just want to show basically what is happening...

Thanks for any help here...


--
Mhz
------------------------------------------------------------------------
Mhz's Profile: http://www.excelforum.com/member.php...o&userid=35980
View this thread: http://www.excelforum.com/showthread...hreadid=561798


  #4   Report Post  
Posted to microsoft.public.excel.newusers
Max Max is offline
external usenet poster
 
Posts: 9,221
Default Getting Sheets Copied From One Workbook to Another Without ....?

Some thoughts ..
.. The Problem is that the sheets appears to carry
their File Path with them creating a Problem
for my formulas within the destination sheet [book]


Think it's because the formulas on the sheets within the source book to be
moved over are referencing other sheets in the source book

Is there a way to keep the Formulas intact to represent the
destination sheet?


Try tinkering in this way ..

First, ensure that all dependent sheetnames referenced by the formulas
within the sheets to be moved over, eg: Day14, etc actually *exist* within
the destination book before proceeding ..


In the source book,
(Do this one sheet at a time)

Select the entire sheet to be moved
Click Edit Replace
Find what: =
Replace with: zzzzz
Click Replace All
(this effectively "neutralizes" all formulas on the sheet)

Then move the sheet over to the destination book,
and reverse the process ..

Select the entire sheet (which is copied over)
Click Edit Replace
Find what: zzzzz
Replace with: =
Click Replace All
(Array formulas, if any, would need to be re-entered using CSE & re-filled)

Repeat for next sheet ...
--
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---
"Mhz" wrote:
Hello, I have a situation where I want to move 3 sheets from one
workbook to another. The Problem is that the sheets appears to carry
their File Path with them creating a Problem for my formulas within the
destination sheet..

Is there a way to keep the Formulas in tact to represent the
destination sheet?

The Workbooks have the same Data, but 3 sheets from the source workbook
need to be inserted in the destination workbook without paths in the
formulas leading back to the source workbook (file).

eg.

Source workbook sheet1 A1 Reads:

=IF(DAY14!B330,DAY14!C33,"")

When it is copied to the Destination Worksheet it Reads:

=IF('[JULY CALLS CREATION BU9 TESTING.xls]DAY14!B330,'[JULY CALLS
CREATION BU9 TESTING.xls]DAY14!C33,"")

I modified the above formula slightly to remove the Reference errors,
but I just want to show basically what is happening...

Thanks for any help here...


--
Mhz
------------------------------------------------------------------------
Mhz's Profile: http://www.excelforum.com/member.php...o&userid=35980
View this thread: http://www.excelforum.com/showthread...hreadid=561798


  #5   Report Post  
Posted to microsoft.public.excel.newusers
Max Max is offline
external usenet poster
 
Posts: 9,221
Default Getting Sheets Copied From One Workbook to Another Without ....?

Some thoughts ..
.. The Problem is that the sheets appears to carry
their File Path with them creating a Problem
for my formulas within the destination sheet [book]


Think it's because the formulas on the sheets within the source book to be
moved over are referencing other sheets in the source book

Is there a way to keep the Formulas intact to represent the
destination sheet?


Try tinkering in this way ..

First, ensure that all dependent sheetnames referenced by the formulas
within the sheets to be moved over, eg: Day14, etc actually *exist* within
the destination book before proceeding ..


In the source book,
(Do this one sheet at a time)

Select the entire sheet to be moved
Click Edit Replace
Find what: =
Replace with: zzzzz
Click Replace All
(this effectively "neutralizes" all formulas on the sheet)

Then move the sheet over to the destination book,
and reverse the process ..

Select the entire sheet (which is copied over)
Click Edit Replace
Find what: zzzzz
Replace with: =
Click Replace All
(Array formulas, if any, would need to be re-entered using CSE & re-filled)

Repeat for next sheet ...
--
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---
"Mhz" wrote:
Hello, I have a situation where I want to move 3 sheets from one
workbook to another. The Problem is that the sheets appears to carry
their File Path with them creating a Problem for my formulas within the
destination sheet..

Is there a way to keep the Formulas in tact to represent the
destination sheet?

The Workbooks have the same Data, but 3 sheets from the source workbook
need to be inserted in the destination workbook without paths in the
formulas leading back to the source workbook (file).

eg.

Source workbook sheet1 A1 Reads:

=IF(DAY14!B330,DAY14!C33,"")

When it is copied to the Destination Worksheet it Reads:

=IF('[JULY CALLS CREATION BU9 TESTING.xls]DAY14!B330,'[JULY CALLS
CREATION BU9 TESTING.xls]DAY14!C33,"")

I modified the above formula slightly to remove the Reference errors,
but I just want to show basically what is happening...

Thanks for any help here...


--
Mhz
------------------------------------------------------------------------
Mhz's Profile: http://www.excelforum.com/member.php...o&userid=35980
View this thread: http://www.excelforum.com/showthread...hreadid=561798




  #6   Report Post  
Posted to microsoft.public.excel.newusers
Mhz Mhz is offline
external usenet poster
 
Posts: 1
Default Getting Sheets Copied From One Workbook to Another Without ....?


Oh Max, I would be Nights Behind if I didn't have your powerful
programming help ;) YES, this works great for moving Sheets between
Workbooks without the File Link Traveling Behind ... Thanks Very Much
..... The Frown Has returned An Happy Face ...:)


--
Mhz
------------------------------------------------------------------------
Mhz's Profile: http://www.excelforum.com/member.php...o&userid=35980
View this thread: http://www.excelforum.com/showthread...hreadid=561798

  #7   Report Post  
Posted to microsoft.public.excel.newusers
Max Max is offline
external usenet poster
 
Posts: 9,221
Default Getting Sheets Copied From One Workbook to Another Without ...

"Mhz" wrote:
Oh Max, I would be Nights Behind if I didn't have your powerful
programming help ;) YES, this works great for moving Sheets between
Workbooks without the File Link Traveling Behind ... Thanks Very Much
..... The Frown Has returned An Happy Face ...:)


Glad to hear it worked ! Like you now <g, I've also learnt from and
benefited immeasurably from the many regular responders in these excel
newsgroups over the years. Besides reading answered posts, try plunging in
and answering some posts too. That's one good way to enjoy and learn around
here.
--
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
selecting a single sheet from a volume of sheets in a workbook No News Excel Worksheet Functions 12 July 1st 06 05:29 AM
Macros for Protect/Unprotect all sheets in a workbook Paul Sheppard Excel Discussion (Misc queries) 2 August 4th 05 04:30 PM
Sending sheets in workbook billy2willy Excel Discussion (Misc queries) 4 July 28th 05 05:43 PM
copy/move sheets within workbook Roger B. Excel Discussion (Misc queries) 1 May 5th 05 05:43 PM
How to hyperlink from a workbook to sheets in another workbook? MJOHNSON Excel Worksheet Functions 0 February 17th 05 08:31 PM


All times are GMT +1. The time now is 02:59 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"