Hello,
I’m working with Microsoft Access and I have two files that I would like to combine into a single query.
File 1: MasterData – this file contains all previously produced product codes with the following columns:
- Product Id Description
- Material number
- Material - Mag
- Wee category
- WeeWeight
- Battery Weight
- Battery Qty
- Battery type
File 2: Sales – this file contains information about products sold in a given quarter, with these columns:
- Product ID
- id_product id description
- id_material number
- id_material - Mag
- invoiced qty
The column id_product id description in Sales contains product descriptions that can also be found in the MasterData file (Product Id Description). Similarly, id_material number in Sales contains product codes that are also present in MasterData.
My goal is to create a query in Access that displays the following columns combining data from both files:
- Product ID
- Product ID Description
- Material number
- Material - MAG
- Invoiced Qty
- Weee category
- Wee weight
- Total Wee
Is it possible to create such a query in Access that merges these two tables and displays the requested information?
Thank you in advance for your guidance!