linking dates on multiple worksheets

T

Taz22i

I have a workbook with 5 worksheets. If a date is typed in a merged cell (2
cells) on worksheet one, I want the date to automatically be placed on
worksheet 5 in another merged cell (3 cells).
 
T

Tim879

On the other worksheet(s), just put a formula to reference the
worksheet with the date.

for example, if the date is in cell A1 on Sheet1 then in cell A1 (or
whatever cell you choose) on Sheet2 put the following formula: =Sheet1!
a1.


If you only want the date to appear when a value is entered (i.e. the
cell is not blank) use this formula: =if(isblank(sheet1!a1),"",sheet1!
a1)
 
F

Fred Smith

In the target cell (ie, the one on worksheet 5), put the formula

=Sheet1!A1

Where Sheet1 is the name of worksheet one, and A1 is the cell where you
enter the date.

Regards,
Fred.
 

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