I have a table with the following data:
I want to make the following report.
I can put the rates in the A-Rate and B-Rate columns on the report by using the expression =IIF(([Rate]="A",[Hours],0).
I cannot figure out how to sum the data from these "derived" columns.
Any ideas?
Thanks!
Code:
Employee Rate Date Hours
Joe A 1-1-02 2
John B 1-2-02 3
Joe A 1-3-02 3
I want to make the following report.
Code:
Employee Date A-Rate B-Rate
Joe 1-1-02 2
John 1-2-02 3
Joe 1-3-02 3
----------------------------------------
Sums 5 3
I can put the rates in the A-Rate and B-Rate columns on the report by using the expression =IIF(([Rate]="A",[Hours],0).
I cannot figure out how to sum the data from these "derived" columns.
Any ideas?
Thanks!