I am trying to do this in Access.
I have 2 tables: named 2012 & 2013 Both Tables have the same fields: Year, Sales, Invoices, Part Number, Description
I need a final report (query) that adds sales and invoices for all part numbers. For example; Part Number 123 has 1 sale in 2012 and 3 sales in 2013 the result will be 4 sales. I need sum of both sales and invoices fields.
Tables have different number of records. Need to display all records.
TABLE 1 EXAMPLE
Year Sales Invoices Part Number Description
2012 0 0 1234 HAT
2012 3 3 5678 JACKET
TABLE 2 EXAMPLE
Year Sales Invoices Part Number Description
2013 17 17 1234 HAT
2013 1 1 5678 JACKET
QUERY EXAMPLE
Sales Invoices Part Number Description
17 17 1234 HAT
4 4 5678 JACKET