How to switch zeros for blanks in a range in excel? -


i need select column sheet1 , selected column matches destination cell's row. i've got code

indirect(address(2;row();;;"sheet1")):indirect(address(101;row();;;"sheet1"))) 

but selects blank values (empty cells) zeros insted of empty cells!

i tried fix

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 apply condition range instead of value.

is there way select range indirect(address(2;row();;;"sheet1")):indirect(address(101;row();;;"sheet1")) picking blanks blanks instead of zeros?

is trying? have put formula inside trim() formula.

=trim(indirect(address(2;row();;;"sheet1")):indirect(address(101;row();;;"sheet1"))))

note: trim() return string. if cell blank blank if cell has number number string

see example

enter image description here


Comments

Popular posts from this blog

c++ - CryptStringToBinary API behavior -

c++ - Correct method for redrawing a layered window -

java.util.scanner - How to read and add only numbers to array from a text file -