
Originally Posted by
rpeare
Yes you can still use dsum
(assume for the sake of this example you could had 10 fields called chargeamt1 through chargeamt2)
=DSum("[chargeamt1]+[chargeamt2]+...+[chargeamt10]","Tbl_Charges","[personID] = 1")
And if you don't want to have a formula in a text box then you can do the summation behind the scenes and just populate the total in an unbound text box. Though how you would get a sum without a formula is beyond me.
One other thing you could try is, as you said you can get the total on your subform would be to just have any place where you want the total appear you just have a textbox where the CONTROL SOURCE property is set to:
=[Forms]![frm_people].[Frm_charges]![Chargetot]
where frm_people would be your main form
frm_charges would be the subform where the total is correctly displayed