I am calculating Sales Tax in a query. I need the sales tax to round up, but I've tried everything I've found on the internet and in this forum and I can't get anything to work. Here is what I am trying to do:
The Tax rate is set at 5.5% and say for instance the item sells for $1.00, the tax calculates to .055, which rounds up to $.06 in the form, but when you click in the box it shows up as .055 and makes the total 1.055. I need it to calculate as .06 and make the total 1.06. I tried to use this formula:
Just to see if I could get it to round and it worked, but it rounded down to $.05 instead of rounding up to $.06.
Any help would be greatly appreciated.
Code:
tax: (Switch([taxable]="y",([finalprice]*[taxrate]),[taxable]="n",([finalprice]*0)))
Code:
Expr1: CCur(Nz(Round([finalprice]*[TaxRate],2),0))
Any help would be greatly appreciated.
Comment