G Gezza77 Jan 7, 2008 #1 I am trying to set up a form that will totalise multiple fields relating to a unique identifying field in the same table
I am trying to set up a form that will totalise multiple fields relating to a unique identifying field in the same table
J Jeanette Cunningham Jan 7, 2008 #2 Hi, put an unbound textbox on the form. Set its datasource to something like = Nz(Me.txtA, 0) + Nz(Me.txtB,0) + Nz(Me.txtC,0) where txtA, txtB, txtC are controls for the fields you want to sum. Jeanette Cunningham
Hi, put an unbound textbox on the form. Set its datasource to something like = Nz(Me.txtA, 0) + Nz(Me.txtB,0) + Nz(Me.txtC,0) where txtA, txtB, txtC are controls for the fields you want to sum. Jeanette Cunningham