I need to select a column from sheet1 and the selected column matches destination cell's row. I've got this code
INDIRECT(ADDRESS(2;ROW();;;"Sheet1")):INDIRECT(ADDRESS(101;ROW();;;"Sheet1")))
but it selects blank values (empty cells) as zeros insted of empty cells!
I tried to fix it with something like
IF(
(
INDIRECT(ADDRESS(2;ROW();;;"Sheet1")):INDIRECT(ADDRESS(101;ROW();;;"Sheet1"))
)=0;
"";
(INDIRECT(ADDRESS(2;ROW();;;"Sheet1")):INDIRECT(ADDRESS(101;ROW();;;"Sheet1"))))
which of course doesn't work because I'm trying to apply the condition to a range instead of a value.
Is there any way to select the range
INDIRECT(ADDRESS(2;ROW();;;"Sheet1")):INDIRECT(ADDRESS(101;ROW();;;"Sheet1"))
picking
the blanks as blanks instead of zeros?