The best solution is not to store all these in the table, but to use
calculated fields in a query.
The table should probably have just these fields:
Sub Total Currency
Discnt Double (formatted percent)
Gst Rate Double (formatted percent)
Tendered Currency
Then in your query, you can enter an expression like this into a fresh
column in the Field row:
Discount Amnt: [Sub Total] * [Discnt]
and in the next column:
Total: [Sub Total] - ([Sub Total] * [Discnt])
and so on.
For more help with the basic idea, see:
Calculated fields
at:
http://allenbrowne.com/casu-14.html

Signature
Allen Browne - Microsoft MVP. Perth, Western Australia.
Tips for Access users - http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps dot org.
> where can I make calculations in bound text boxes on a form work,
> I'm building a cash register form with these text boxes bound to a table:
[quoted text clipped - 24 lines]
>
> Thanks in advance.