user793468
user793468

Reputation: 4976

referencing a cell to a range in different worksheet

How can I reference a cell to a range in excel?

For eg: I want to reference cell A1 of Sheet1 to Range A1:A10 of Sheet3.

So if Cell A6 of Range A1:A10 in Sheet3 has this value then I want to display that value in Cell A1 of Sheet1.

How to best acoomplish this?

Thanks in advance.

Upvotes: 0

Views: 339

Answers (2)

Jacob Bolda
Jacob Bolda

Reputation: 582

If only one cell will ever have a value, you can just use =sum(Sheet3!A1:A10). It will return a value of 0 if nothing is filled in.

Upvotes: 1

teylyn
teylyn

Reputation: 35990

=IFERROR(LOOKUP(2,1/(Sheet3!A1:A10<>""),Sheet3!A1:A10),"")

Upvotes: 3

Related Questions