Reputation: 4976
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.
A1:A10
will have value in it or no cell will have values.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
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