Linking/refreshing data across worksheets

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

This is a very basic question, but has me stumped nonetheless.

I have one worksheet which contains a list of my "master data", while several other worksheets in the workbook reference this list of data using an absolute reference i.e. ='Food Master'!B20

Is there an easy way to keep the data synced across worksheets if I insert a row into my master worksheet? FYI, I do not have this data saved as a list.

Is there a way to accomplish this with absolute references or do I need to use a pivot table, lookup table, etc.? I'm trying to keep this simple if at all possible.

thanks in advance,
jh
 
"='Food Master'!B20" is not an absolute reference. "='Food
Master'!B$20" has an absolute row reference. When you insert rows, all of
the formulas referring to the original row remain the same. That is, if you
insert a new row above row 20 on the Food Master sheet, the formulas will
then refer to row B21.

What exactly do you mean by "synced"? Maybe a bit more detail is needed.


jennifer said:
This is a very basic question, but has me stumped nonetheless.

I have one worksheet which contains a list of my "master data", while
several other worksheets in the workbook reference this list of data using
an absolute reference i.e. ='Food Master'!B20
Is there an easy way to keep the data synced across worksheets if I insert
a row into my master worksheet? FYI, I do not have this data saved as a
list.
Is there a way to accomplish this with absolute references or do I need to
use a pivot table, lookup table, etc.? I'm trying to keep this simple if
at all possible.
 
On the sheets that refer to the master list, you can use the Indirect
function. For example:

=INDIRECT("FoodMaster!"&ADDRESS(ROW(),COLUMN()))

will refer to the matching cell on the FoodMaster sheet.
 

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

Back
Top