M
Max
From Table1:
StaffID Prod1 Prod2
2222 200 120
1111 170 190
2222 130 180
1111 200 150
etc
etc
how do I query it to "roll up" like this:
(Unique StaffIDs with corresponding sums)
StaffID Prod1 Prod2
2222 330 300
1111 370 340
Thanks
StaffID Prod1 Prod2
2222 200 120
1111 170 190
2222 130 180
1111 200 150
etc
etc
how do I query it to "roll up" like this:
(Unique StaffIDs with corresponding sums)
StaffID Prod1 Prod2
2222 330 300
1111 370 340
Thanks