![]() |
#1
|
|||
|
|||
![]()
Hello,
I would like to know if excel has the capacity to build a master copy of say a table that can be copied into numerous excel worksheets where all the copies can be edited at once just by editing the master copy. Help appreciated, Kenny |
#2
|
||||
|
||||
![]()
Well, you do have the capability of having a formula point to a cell in another workbook. For example, suppose you're doing a MATCH:
Code:
=MATCH(RC1,C3,0) Code:
=MATCH(RC1,OtherSheet!C3,0) Code:
=MATCH(RC1,[Otherworkbook.xlsx]OtherWorksheet!C3,0) So the first part of your question is that you don't even have to copy the master table to the current workbook; you can just do the lookup directly. The second part is that you can, I suppose—if you want to—copy the master table, by just filling up a worksheet in your current workbook to say something like Code:
=[OtherWorkbook]Otherworksheet!RC And I have yet a third answer, or more a sort of side issue: You should beware of this, because in my experience lookups in external workbooks take a lot longer, especially if you don't open them first. Better, maybe, to have a macro go fetch the master and copy it into a new worksheet of the current workbook, at least if the table is very sizable. That's what I do, mostly, FWIW. |
![]() |
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
![]() |
lineweaver | PowerPoint | 1 | 05-20-2013 01:10 AM |
![]() |
sumjoh | Word VBA | 1 | 01-29-2013 08:38 PM |
VBA in Excel: Add a new Word Document on Template (Type Mismatch Error)) | tinfanide | Excel Programming | 1 | 03-29-2012 09:10 AM |
Unable to cast COM object of type Microsoft.Office.Interop.Excel.ApplicationClass | manishjoisar | Excel Programming | 0 | 03-01-2012 02:53 AM |
Macro: chart from excel into PP as objects | Jazz43 | PowerPoint | 0 | 03-05-2011 09:06 AM |