Jason,
Write a IIF statement saying, IIf([Current_Price]= 0,
[Original_Price], [Original_Price]-[Current_Price])
I think the above should work.
-----Original Message-----
I would appreciate help with an expression in the query builder of Access
2000:
I currently have a simple calculation field in my query which determines the
difference between two prices...
Price_Reduction: [Original_Price]-[Current_Price]
Works great....BUT....falls down when the Current Price is '0'.
EG:
20,000 - 0 = 20,000
Actually, if the Current_Price is Zero the Price_Reduction should = '0'
Like this:
Price_Reduction: 20,000 - 0 = 0 (No price reduction)
I guess it requires the use of perhaps an IIF statement but I am not
completely sure if this is correct. Can anyone give
me some guidance on how to construct this expression to reflect the reality
of the situation.?
Thanks in advance
Jason
.