I am starting working with access and while I know a bit how it works, this new task I am planning to perform is not getting any desired results.
Summary:
The two main data sets have Users ID, Dates, and Product Name which I need to combine. Considering Product Names from Both data sets contains some products the other Data doesn't. that's the reason why I need to combine then together.
Along with those columns, There are other columns That I need to include in the final report. Those fields are independent meaning, they are not related to each other but, they are related to the Product Columns/ID/Date. That means I need to match the remaining columns based on the Product names, User ID, and Dates so I can have one report with 1 field with dates, 1 field with user ID, and 1 field with products Names from both data sets but including all remaining columns.
I have tried creating union with product names, Index with ID - Date - Product name, different joins without results, maybe I am missing something simple.
Data 1 example:
ID Date Product Calls DC 1 8/31 Poroduct#3 5 5 1 8/28 Product #2 3 6 2 8/27 Product #2 2 8
Data 2 example:
ID Date Product Call Int PA 1 8/31 Poroduct#4 5 3 1 8/31 Product #3 3 7 2 8/27 Product #2 5 2
Desired Result:
ID Date Product Calls DC Call Int PA 1 8/31 Product#3 5 5 3 7 1 8/28 Product#2 3 6 2 8/27 Product#2 2 8 5 2 1 8/31 Product#4 5 3
Your Help will be much appreciated!