Grand total of current stock report

Mick Kobayashi 0 Reputation points
2024-05-14T20:18:43.5733333+00:00

User's image

I want to get grand total of current stock in the blank square at the bottom, but cannot figure out how.

Microsoft 365 and Office | Access | Development
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Ken Sheridan 3,571 Reputation points
    2024-05-15T13:21:33.1933333+00:00

    Normally this would simply require the repetition of the expression used to return the Current Stock values in the group footer, either in the Report Footer, or in a higher level group footer.

    Note that values cannot be aggregated directly in a Page Footer. To return page totals use an unbound control in the Page Footer, and initialise and increment the values per page in the report's module, as in the example below:

    Private Sub PageHeaderSection_Print(Cancel As Integer, PrintCount As Integer)
    
        'reinitialise page total control to zero
        Me.txtPageTotal = 0
        
    End Sub
    
    Private Sub Detail_Print(Cancel As Integer, PrintCount As Integer)
    
        If PrintCount = 1 Then
            Me.txtPageTotal = Me.txtPageTotal + Me.PaymentAmount
        End If
        
    End Sub
    
    0 comments No comments

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.