i have this formula:
column AE
and
column AF
but b/c you can't divide by 0 the result ends up being #DIV/0!
in this field i get "na" in column AG
what can i edit so that it'll show "na" as the result if it's not divided by 0?
Column AC is
Column H and I sometimes has 0 and the issue with the divide by 0.
column AE
Code:
=IF(AC399="na",0,IF(AC399=0,0,IF(AC399<I399,I399,(ROUND(AC399/I399,0)*I399))))
and
column AF
Code:
=IF(AE399="n/a","n/a",IF(AE399="na","na",(AE399*H399)))
but b/c you can't divide by 0 the result ends up being #DIV/0!
in this field i get "na" in column AG
Code:
=IF(I399=0,"na",SUM(AE399/I399))
Column AC is
Code:
=IF(AB399<=Z399,0,IF(AB399="na","na",(AB399-Z399)))