No. A group footer only appears at the end of the group so
there is nowhere for it to repeat. We're being devious when
faking a page header with a group header, but that simple
fakery doesn't extend to an equivalent for a group footer.
A more direct, but a ;ittle more complex, approach is to use
the main report's Page footer section. If the main report
is not using it's page footer section, then make it
invisible and set it up with the appropriate text boxes.
Use the subreport's report (or the repeat group) header
section's Format event to set the control's values and make
the main report's page footer visible:
With Me.Parent
.thistextbox = Me.something
.thattextbox = Me.whatever
. . .
.Section(4).Visible = True
End With
If the main report is using it's page footer, add the
controls for the subreport and make them invisible. Then
instead of making the entire section visible, set the main
report usual controls invisible and the subreport text boxes
visible:
With Me.Parent
.maintextboxA.Visible=False
.maintextboxB.Visible=False
. . .
.thistextbox = Me.something
.thistextbox.Visible = True
.thattextbox = Me.whatever
.thattextbox.Visible = True
. . .
End With