M moi Member Local time Tomorrow, 02:54 Joined Jan 10, 2024 Messages 273 Feb 22, 2024 #1 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 22.5 KB · Views: 96
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)
Ranman256 Well-known member Local time Today, 14:54 Joined Apr 9, 2015 Messages 4,352 Feb 22, 2024 #2 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)
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)