Как посчитать сумму столбца в отчете на каждой странице
Private Sub PageHeaderSection_Format(Cancel As Integer, FormatCount As Integer)
Me!fldPageSum = 0
End Sub
Private Sub Detail_Print(Cancel As Integer, PrintCount As Integer)
If PrintCount = 1 Then
Me!fldPageSum = Me!fldPageSum + Me!fldTotal
End If
End Sub
Может выглядеть примерно так:
|