I have this subform which consists of a combo box (based on a query) and another text box (Amount). On my form, the user can choose a billingOptionID from the subform's combo box and the amount for that option shows up in the field next to it. The subform is in datasheet view, because there are a couple of billingoptions he can have, so the user can click on an empty row and add another billingoption. Well on the form I have a text box where I want to reference the total amount of all his options.
Control Source=[optionsSubform].Form![amount] only gives the current/most recent row's Amount. How do I sum them all? (No, simply sticking a Sum() around it doesn't work). Thanks in advance to y'all smarter than me who looked at this.
Control Source=[optionsSubform].Form![amount] only gives the current/most recent row's Amount. How do I sum them all? (No, simply sticking a Sum() around it doesn't work). Thanks in advance to y'all smarter than me who looked at this.