I am trying to combine multiple Sum IIF calculations in one report to combine the results of multiple departments. The first department works well using:
=(Sum(IIf([ReportGroupBook]="11Budget",[1]/1000,Null)))
What is the syntax to combine other departments into this control source on a report? I would like to combine the totals of field [1] where ReportGroupBook = "12Budget", and "14Budget". Thank you.
=(Sum(IIf([ReportGroupBook]="11Budget",[1]/1000,Null)))
What is the syntax to combine other departments into this control source on a report? I would like to combine the totals of field [1] where ReportGroupBook = "12Budget", and "14Budget". Thank you.