#Num! Get Rid of This???

  • Thread starter Thread starter Dave Elliott
  • Start date Start date
D

Dave Elliott

How can I make the formulas below show a zero if the value is null? i.e.
Text600; Get Rid of the #Num!

=nz([Labor]/[Text600],0)
=nz([NetAfterCom]/[Text600],0)
 
=IIf(Nz([Text600],0) = 0, 0, [Labor]/[Text600])

This will also prevent "divide by zero" if Text600 is zero instead of Null.
 
Back
Top