- Numbers

  • Thread starter Thread starter Tim B.
  • Start date Start date
T

Tim B.

I have a fiels that displays the diff between two other
fields.
sometimes if there is not a number in one of the fields I
get a negitive number. The negitive number drives the
users crazy. Can someone tell me how to make the field
blank if there is a negitive number in it ?
Thanks Tim B.
 
use an if statement...

=iif([Field1]-[Field2]>0,[Filed1]-[Field2],"N/A")
to get N/A to display for negatives

Or

=iif([Field1]-[Field2]>0,[Filed1]-[Field2],"")
to get a blank space.


Rick B


I have a fiels that displays the diff between two other
fields.
sometimes if there is not a number in one of the fields I
get a negitive number. The negitive number drives the
users crazy. Can someone tell me how to make the field
blank if there is a negitive number in it ?
Thanks Tim B.
 

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

Back
Top