After using a formula how can I filter out answers I don't want?

E

Em

I have used a vlookup formula with success, but I would like to hide all #REF
and 0 answers that have come up. An IF function won't work, what can I use
to filter these answers out?
 
R

Roger Govier

Try
=IF(ISERROR(your_formula),"",your_formula) to hide the #REF errors

Unclick Tools>Options>View>Zero values to hide the 0 answers
 
Top