Total on Report

moi

Member
Local time
Tomorrow, 02:54
Joined
Jan 10, 2024
Messages
273
To all

Is it possible to sum/total Agent, Admin and Marketing Assist separately on Report Footer?. i.e.

=Sum(Agent)
=Sum(Admin)
=Sum(Marketing Assist)
 

Attachments

  • Screenshot (4).png
    Screenshot (4).png
    22.5 KB · Views: 96
in the query add these calculations to get amts per CommType:
select [field], AgentAmt: IIf([field]="Agent",[Amt],0) ,AdminAmt: IIf([field]="Admin",[Amt],0)... from table

then sum in the footer:
=Sum(AgentAmt)
=Sum(AdminAmt)
 

Users who are viewing this thread

Back
Top Bottom