Using Access 2007
On a form, I have a text box that pulls the total of Materials ordered from a subform fsubMaterials. The Materials are then marked up by the contractor, with a default of 20% but the contractor can change this value in a text box called txtMarkup.
Is this the proper way to do that Round function?
=Round([txtMarkup]*Nz([fsubMaterials].[Form]![txtMaterials],2),2)
The value is then added to the total Materials cost to produce a TotalMaterialsCost, which has the following construction.
=Nz(Round([fsubMaterials].[Form]![txtMaterials],2),0)+[txtMarkupAmt]
Perhaps there is a way to do this in one step and I haven’t played with that yet. My main concern is getting the Round properly.
Tom