Type data in one cell - and it automatically populates another cel

G

Guest

I'm looking for a formula (I think a formula, or some other way) whereby I
enter data in one cell on one worksheet and it simultaneously (or after a
keystroke or two) fills in the same data in a cell that I select on another
worksheet, all within the same workbook. E.g., I type in the name "Roger" in
cell C3 on sheet 1. I would have previously set up a condition in a formula
or some other way whereby anything I type in cell C3 of sheet 1 is repeated
in cell D4 of sheet 2. In other words, Excel does the "copying" on-the-fly
using my pre-determined cells, i.e., anything I type in C3 is automatically
filled in D4 of another sheet I specify.
 
G

Gord Dibben

Tom

In D4 of sheet2 enter =Sheet1!C3

Another way is to enter an = sign in D4 then switch to sheet1 and select C3 and
hit ENTER key.

And one more...........select C3 and switch to sheet2, select D4 and Edit>Paste
Special>Paste Link>OK>Esc.

In all cases, D4 will get the above formula.


Gord Dibben MS Excel MVP
 
A

Anne Troy

To add to what Gord said, I often do something like this:
=if(isblank(Sheet1!C3),"",Sheet1!C3)
That way, you won't get a 0 in the cell in which the formula resides when
Sheet1!C3 is blank.

****************************
Hope it helps!
Anne Troy
www.OfficeArticles.com
****************************
 
G

Gord Dibben

Thanks Anne.

I too often forget about warning posters of the zero issue and giving them a fix
as you have done.

Only drawback is a straight "paste links" won't add the error trap so you have
to build the first formula from scratch then copy.


Gord
 
A

Anne Troy

:)
Were you in Seattle? If yes, I'm so sorry I missed you.
I had a unique opportunity to crash and met so many others.
****************************
Hope it helps!
Anne Troy
www.OfficeArticles.com
****************************
 

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