#Num! Get Rid of This???

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)
 
W

Wayne Morgan

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

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

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top