I have a query that I want to summarize based on the results in the table.
Example:
I have 10 records and 2 fields.
One field is called QPR and another field is called Qty (interger)
Three of the 10 records have ABC in the QPR number, 2 of them DEF in the QPR field and 5 have XYZ. I would like to summarize the Qty field based on these records.
Table1
QPR - Qty
ABC - 2
XYZ -1
DEF - 6
ABC -7
XYZ - 2
DEF - 10
ABC - 3
XYZ - 8
XYZ - 2
XYZ - 5
Query results:
ABC - 12
DEF - 16
XYZ - 18
Thanks!!
Example:
I have 10 records and 2 fields.
One field is called QPR and another field is called Qty (interger)
Three of the 10 records have ABC in the QPR number, 2 of them DEF in the QPR field and 5 have XYZ. I would like to summarize the Qty field based on these records.
Table1
QPR - Qty
ABC - 2
XYZ -1
DEF - 6
ABC -7
XYZ - 2
DEF - 10
ABC - 3
XYZ - 8
XYZ - 2
XYZ - 5
Query results:
ABC - 12
DEF - 16
XYZ - 18
Thanks!!