Have a form that records events, the people taking part in a first subform, and the amounts collected by each person in a sub-sub form. So the hierarchy is
frmEventName - single form view
contains sfmParticipant - single form view
contains sfmParticipantAmounts - datasheet view
On the main form frmEventName I'd now like to show the total of all subtotals for all participants.
I can get the total for a participant to show on sfmParticipant by using an unbound field ParticipantTotal and setting its source to be
=Forms!frmEventName.sfmParticipant.form.sfmParticipantAmounts.form.AmountsTotal
where AmountsTotal is the sum of amounts, placed in the footer of sfmParticipantAmounts.
How can I now sum these participant totals given that subform sfmParticipants has to be in single form view since it contains its own subform?
frmEventName - single form view
contains sfmParticipant - single form view
contains sfmParticipantAmounts - datasheet view
On the main form frmEventName I'd now like to show the total of all subtotals for all participants.
I can get the total for a participant to show on sfmParticipant by using an unbound field ParticipantTotal and setting its source to be
=Forms!frmEventName.sfmParticipant.form.sfmParticipantAmounts.form.AmountsTotal
where AmountsTotal is the sum of amounts, placed in the footer of sfmParticipantAmounts.
How can I now sum these participant totals given that subform sfmParticipants has to be in single form view since it contains its own subform?