The correct syntax should be:
=SubRptControlName.Report.txtTextBoxName
If there is a chance that the subreport will not have any data, then this will not calculate properly. You would need syntax like:
=IIf(SubRptControlName.Report.HasData, SubRptControlName.Report.txtTextBoxName,0)
Duane
MS Access MVP