Jul 28, 2004 #1 villica Programmer Feb 25, 2000 332 CA On the Open even of the report, I have bind the controls to a table all the controls are on the detail section example qty1 qty2 qty3 1 66 22 99 66 2 how do I add a subtotal I tried = sum(qty1), but it does not work any suggestions villica
On the Open even of the report, I have bind the controls to a table all the controls are on the detail section example qty1 qty2 qty3 1 66 22 99 66 2 how do I add a subtotal I tried = sum(qty1), but it does not work any suggestions villica
Jul 28, 2004 Thread starter #2 villica Programmer Feb 25, 2000 332 CA I meant to say report not FORM villica Upvote 0 Downvote
Jul 29, 2004 1 #3 LittleSmudge Programmer Mar 18, 2002 2,848 GB A a new text box control beside qty1 and also bind it to the field qry1 but call it Tqry1 and make it Visible = No Then set the Running Total property to OverGroup ( or Over All - if appropriate - see the Help file on the difference ) Then in the Report Footer add a text box and call it GTqty1 and set the ControlSource = Tqry1 Tat will do it. 'ope-that-'elps. G LS spsinkNOJUNK@yahoo.co.uk Remove the NOJUNK to use. Upvote 0 Downvote
A a new text box control beside qty1 and also bind it to the field qry1 but call it Tqry1 and make it Visible = No Then set the Running Total property to OverGroup ( or Over All - if appropriate - see the Help file on the difference ) Then in the Report Footer add a text box and call it GTqty1 and set the ControlSource = Tqry1 Tat will do it. 'ope-that-'elps. G LS spsinkNOJUNK@yahoo.co.uk Remove the NOJUNK to use.
Jul 29, 2004 Thread starter #4 villica Programmer Feb 25, 2000 332 CA Thank you LittleSmudge. it worked. villica Upvote 0 Downvote