Google Sheets – Filter Non-Zero or #N/A Using Custom Formula

formulasgoogle sheetsgoogle-sheets-arrayformula

Say my data is in range A6:Z with the headers in row 5. I want to display rows with value in column C that is non-zero or #N/A. I tried OR(C6:C <> 0, IFNA(C6:C, true)) and OR(C6:C <> 0, ISNA(C6:C)) and none of them works.

Best Answer

Try the following

=INDEX(IF((IFNA(V6:V21))=0,,IFNA(V6:V21)))

enter image description here

To have just 0 values filtered out try

=INDEX(IF(V6:V21=0,,V6:V21))