P
phuser
I have an Order Form that automatically calculates a percentage
Private Sub FreightCharge_AfterUpdate()
[adminfeetbl] = [OrderSubtotal] * 0.02
[SubtotalBAF] = [OrderSubtotal] + [FreightCharge]
[InvoiceTotal] = [OrderSubtotal] + [FreightCharge] - [adminfeetbl]
End Sub
But I am starting to see some serious rounding issues, is there a way to
specify that the amount should be in currency or only have 2 decimal spaces?
Thanks for all!!
Private Sub FreightCharge_AfterUpdate()
[adminfeetbl] = [OrderSubtotal] * 0.02
[SubtotalBAF] = [OrderSubtotal] + [FreightCharge]
[InvoiceTotal] = [OrderSubtotal] + [FreightCharge] - [adminfeetbl]
End Sub
But I am starting to see some serious rounding issues, is there a way to
specify that the amount should be in currency or only have 2 decimal spaces?
Thanks for all!!