Avoiding results with negative numbers

  • Thread starter Thread starter Dale Cain
  • Start date Start date
D

Dale Cain

How can I format a query to return either zero or null
when my original expression may return a negative number.
 
Try

NewValue : If([Value]<=0,0,[Value]) inplace of [Value] where [Value] is the
field with the negative numbers.

Kelvin
 
-----Original Message-----
Try

NewValue : If([Value]<=0,0,[Value]) inplace of [Value] where [Value] is the
field with the negative numbers.

Kelvin

Dale Cain said:
How can I format a query to return either zero or null
when my original expression may return a negative
number.


.
Thanks! I will plug it in.
 
Back
Top