Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 159
Default separating linked wrkbooks

Workbook 2 picks up data from Workbook 1. I type data into 1. I want
to be able to save 2 with all its data from 1, then go back to 1,
clear it, but without my saved 2 being cleared, then enter more data
into 1 and save it on a new 2.
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
MJJ MJJ is offline
external usenet poster
 
Posts: 4
Default separating linked wrkbooks

If you don't want to add to workbook 2 later, then once you have the data you
require in workbook 2, highlight the sheet (or the area of data containing
the formulae), copy it and then 'paste special' 'values'. This will remove
the links and just give you numbers in the cells. Save it with a new name
(January or whatever), dont save workbook 2 and you should still have
workbook 2 with the original formulae for next time you run it.

"robzrob" wrote:

Workbook 2 picks up data from Workbook 1. I type data into 1. I want
to be able to save 2 with all its data from 1, then go back to 1,
clear it, but without my saved 2 being cleared, then enter more data
into 1 and save it on a new 2.

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 159
Default separating linked wrkbooks

On Mar 29, 5:14*pm, MJJ wrote:
If you don't want to add to workbook 2 later, then once you have the data you
require in workbook 2, highlight the sheet (or the area of data containing
the formulae), copy it and then 'paste special' 'values'. *This will remove
the links and just give you numbers in the cells. *Save it with a new name
(January or whatever), dont save workbook 2 and you should still have
workbook 2 with the original formulae for next time you run it. *



"robzrob" wrote:
Workbook 2 picks up data from Workbook 1. *I type data into 1. *I want
to be able to save 2 with all its data from 1, then go back to 1,
clear it, but without my saved 2 being cleared, then enter more data
into 1 and save it on a new 2.- Hide quoted text -


- Show quoted text -


Thanks. Why didn't I think of that? :)
  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 159
Default separating linked wrkbooks

On Mar 29, 7:05*pm, robzrob wrote:
On Mar 29, 5:14*pm, MJJ wrote:





If you don't want to add to workbook 2 later, then once you have the data you
require in workbook 2, highlight the sheet (or the area of data containing
the formulae), copy it and then 'paste special' 'values'. *This will remove
the links and just give you numbers in the cells. *Save it with a new name
(January or whatever), dont save workbook 2 and you should still have
workbook 2 with the original formulae for next time you run it. *


"robzrob" wrote:
Workbook 2 picks up data from Workbook 1. *I type data into 1. *I want
to be able to save 2 with all its data from 1, then go back to 1,
clear it, but without my saved 2 being cleared, then enter more data
into 1 and save it on a new 2.- Hide quoted text -


- Show quoted text -


Thanks. *Why didn't I think of that? *:)- Hide quoted text -

- Show quoted text -


Actually I spoke a bit too soon. It won't paste formats if you pick
paste values. To get over that, I've set up a sheet-to-be-pasted-to
with identical formats to the one I'm copying from, but now it won't
paste values into that at all, it gives:'This operation requires the
merged cells to be identically sized'. But they are. I'm confused.
  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
MJJ MJJ is offline
external usenet poster
 
Posts: 4
Default separating linked wrkbooks

Rob
Now I think its beyond me too I have trouble with the identiclly sized
merged cells thing - I tried - someone else needs to take this one on now.
Sorry and good luck.
Margaret

"robzrob" wrote:

On Mar 29, 7:05 pm, robzrob wrote:
On Mar 29, 5:14 pm, MJJ wrote:





If you don't want to add to workbook 2 later, then once you have the data you
require in workbook 2, highlight the sheet (or the area of data containing
the formulae), copy it and then 'paste special' 'values'. This will remove
the links and just give you numbers in the cells. Save it with a new name
(January or whatever), dont save workbook 2 and you should still have
workbook 2 with the original formulae for next time you run it.


"robzrob" wrote:
Workbook 2 picks up data from Workbook 1. I type data into 1. I want
to be able to save 2 with all its data from 1, then go back to 1,
clear it, but without my saved 2 being cleared, then enter more data
into 1 and save it on a new 2.- Hide quoted text -


- Show quoted text -


Thanks. Why didn't I think of that? :)- Hide quoted text -

- Show quoted text -


Actually I spoke a bit too soon. It won't paste formats if you pick
paste values. To get over that, I've set up a sheet-to-be-pasted-to
with identical formats to the one I'm copying from, but now it won't
paste values into that at all, it gives:'This operation requires the
merged cells to be identically sized'. But they are. I'm confused.



  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,365
Default separating linked wrkbooks

One other option: In workbook2 choose Edit | Links and then choose the
[Break Links] option. That should convert all links to their current value,
much the same as Edit / Paste Special w/Values. But affecting only linked
values.

But from reading some of your exchange with MJJ I'm thinking that maybe
you're still wanting to retain a sheet with the links, while keeping the
'carved in stone' version of the data on another sheet. So, think about this:
Start by making a copy of the worksheet with the linked values on it in
Workbook2.
Choose that copy of the sheet and run the macro that I provide below. It
will take all formulas, including those involving links and convert them to
their resulting values on the sheet selected when you run the macro.

To put the code into your Workbook2: open that file, press [Alt]+[F11] to
open the VB Editor. Choose Insert | Module and copy and paste the code below
into the module that's presented to you. Close the VB Editor. To use it,
just use Tools | Macro | Macros and select the CarveInStone macro frm the
list to [Run].

Sub CarveInStone()
Dim myUsedRange As Range

Set myUsedRange = ActiveSheet.UsedRange
myUsedRange.Formula = myUsedRange.Value
End Sub


"robzrob" wrote:

Workbook 2 picks up data from Workbook 1. I type data into 1. I want
to be able to save 2 with all its data from 1, then go back to 1,
clear it, but without my saved 2 being cleared, then enter more data
into 1 and save it on a new 2.

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
Displaying linked data in excel 2007 when linked file is not avail Eng_19 Excel Discussion (Misc queries) 0 December 7th 07 07:27 PM
Separating text Francis Hookham Excel Discussion (Misc queries) 2 December 10th 06 08:35 PM
Keep objects in wrkbooks in all computers damorrison Excel Discussion (Misc queries) 0 September 4th 06 03:21 PM
In a linked calculation how do I lose the '0' in the linked file? Anita Excel Worksheet Functions 2 February 3rd 06 01:54 PM
Separating names Danno Excel Worksheet Functions 5 October 31st 05 12:29 AM


All times are GMT +1. The time now is 04:31 AM.

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"