2020: Week 26 - Solution
You can find our full solution workflow below and download it here . This week the challenge was all about working with unique IDs and how to deal with things when they don't quite all match up! Step 1 - Join Inputs The first step this week is to bring in both the 'Internal Data' and '3rd Party Data' tables and then identify which IDs match up perfectly, and the ones that don't. To do this we can use the following joins: Perfect Match This is an inner join on ID = 3rd Party ID We can then add a step after the join where we remove the [Scent-1] field and add a string calculation called 'Status' that labels all of the rows as 'Matched'. Unmatched Internal Right Outer Join to include all values from the Internal table, joining on 3rd Party ID = ID Similar to before, we are then going to add a clean step, then remove any 3rd Party fields (ID & Sales) and also rename [Scent-1] to [Scent] Unmatched 3rd Party Left Outer Join to include all values ...