i am trying to enter a calculated field in design view for price and if its more than 20.00 a .04 sale price and if its less than 20.00 .02 for a new field that says sale prce
i am trying to enter a calculated field in design view for price and if its more than 20.00 a .04 sale price and if its less than 20.00 .02 for a new field that says sale prce
Don't understand. What are the .04 and .02 and what is the formula you want to use them in?
How to attach file: http://www.accessforums.net/showthread.php?t=70301 To provide db: copy, remove confidential data, run compact & repair, zip w/Windows Compression.
when the price is >20, 4%discount and <20 2% discount
Try:
[Price] * IIf([Price]<=20, .02, .04)
How to attach file: http://www.accessforums.net/showthread.php?t=70301 To provide db: copy, remove confidential data, run compact & repair, zip w/Windows Compression.