Can’t figure this one out. I want to be able to run a report to show a total of each person’s hours worked and total cost. I have created a query from a table to figure out the totals, but need to run a report to show the total of each individual. Example below
Name: Hour worked: Wage: Total:
John 2 $10 $20
John 4 $10 $40
John 2 $10 $20
Sam 2 $20 $40
Sam 1 $20 $20.
I want to run a report that will calculate all of John’s total work hrs and Total.
Name: Hour Worked Total
John 8 $80
Sam 3 $60
I tried a total query but not getting the results I want like the example above.
Thank you for your time.