using access 2007
here's the code from the builder i'm working with
ExpectedTax: ([TaxPercent]*([Subtotal]-[ProductPurchase d]))+(2*[ProductPurchase d]*[TaxPercent])
when i was trying this out, one of the results i got was 1.625 ... i need this (and the underlying data) to be rounded to 1.63 ... unfortunately when i tried the round function
ExpectedTax: Round(([TaxPercent]*([Subtotal]-[ProductPurchase d]))+(2*[ProductPurchase d]*[TaxPercent]),2)
it displays 1.62 ... why doesn't it round up?? i also tried changing to to currency but that does no good b/c the underlying data still displays 1.625 and i need that figure to be rounded at some point. but whatever i do it rounds down.
can anyone help??
here's the code from the builder i'm working with
ExpectedTax: ([TaxPercent]*([Subtotal]-[ProductPurchase d]))+(2*[ProductPurchase d]*[TaxPercent])
when i was trying this out, one of the results i got was 1.625 ... i need this (and the underlying data) to be rounded to 1.63 ... unfortunately when i tried the round function
ExpectedTax: Round(([TaxPercent]*([Subtotal]-[ProductPurchase d]))+(2*[ProductPurchase d]*[TaxPercent]),2)
it displays 1.62 ... why doesn't it round up?? i also tried changing to to currency but that does no good b/c the underlying data still displays 1.625 and i need that figure to be rounded at some point. but whatever i do it rounds down.
can anyone help??
Comment