F
Fred
How do I avoid getting an #VALUE response in a formula cell without
zero-filling all of the cells being added etc?
Very fustrating
zero-filling all of the cells being added etc?
Very fustrating
Fred;223151 said:How do I avoid getting an #VALUE response in a formula cell without
zero-filling all of the cells being added etc?
Very fustrating
Kevin said:Use the following Generic IF function:
=IF(ISERROR(YourFormula),"",YourFormula)
Example:
=IF(ISERROR(A1+A2),"",A1+A2)