I think that I see the problem. Let me try and explain. I will reproduce the instructions on this post (if I can).
Code:
- Click the Order Summary tab
- Click the Tax Amount text box
- In the Property Sheet, click Control Source and change it as follows:
=Nz([SubTotal1])+Nz([SubTotal2])+Nz([SubTotal3])+Nz([SubTotal4])+Nz([SubTotal5])
- On the form, click the Total Labor text box
- In the Data tab of the Property Sheet, change the expression in the Control Source as follows:
=Nz([JobPrice1])+Nz([JobPrice2])+Nz([JobPrice3])+Nz([JobPrice4])+Nz([JobPrice5])
- On the form, click the Tax Amount text box
- In the Data tab of the Property Sheet, change the expression in the Control Source as follows:
=CLng(CCur(Nz([txtTotalParts])+Nz([txtTotalLabor]))*CDbl(Nz([TaxRate]))*100)/100
- On the form, click the unbound Total Order text box
- In the Property Sheet, click Control Source and type:
=CCur(Nz([txtTotalParts])) +CCur( Nz([txtTotalLabor])) + CCur(Nz([txtTaxAmount])
- Click Format and select Currency
At point 3 and again at point 7. I calculate the Total tax amount. This seems to be calculated twice. Why?
It seems to be wrong.
Respectfully,
Lou_Reed