Total on Report (1 Viewer)

moi

Member
Local time
Today, 15:06
Joined
Jan 10, 2024
Messages
199
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: 22

Ranman256

Well-known member
Local time
Today, 03:06
Joined
Apr 9, 2015
Messages
4,337
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

Top Bottom