Works great!! Thanks a million!
I forgot to mentioned that when column C is all zeros it should display a blank. I get a ######. How should I revised the formula =FILTER(A2:B6,C2:C6>=1) so it displays nothing and not the ####?
However, I forgot to mentioned that when column C is all zeros it should display a blank. I get a ######. How should I revised the formula =FILTER(A2:B6,C2:C6>=1) so it displays nothing and not the ####?Works great!! Thanks a million!
try with :However, I forgot to mentioned that when column C is all zeros it should display a blank. I get a ######. How should I revised the formula =FILTER(A2:B6,C2:C6>=1) so it displays nothing and not the ####?
=FILTER(A2:B6,C2:C6>=1,"")
=IFERROR(FILTER(A2:B6,C2:C6>=1),"")
=FILTER(A2:B6,C2:C6>=1,"") I used this one. It worked just as great as your help. Thanks again!try with :
orExcel Formula:=FILTER(A2:B6,C2:C6>=1,"")
Excel Formula:=IFERROR(FILTER(A2:B6,C2:C6>=1),"")