Wednesday, January 15, 2020

Create a Full Outer Join in Excel Power Query


If you wanted to merge two tables together to figure out what records may have "missing', blank or null values in the fields, a full join or full outer join may be the solution for you. The use for this type of join can be for reconciliation or trying to discover what type of values you don't have from one table to another. If you want to see all records from table, look into using the full outer join merge capability in Excel Power Query.

Tuesday, January 14, 2020

Grouping Items in an Other Category

Grouping Items in an Other Category



If you're modifying a list of items and wanted to categorize them in a few category names and have everything else in some general Other bucket it's fairly easy to do with the SWITCH function. Better to do this than using nested IF functions, which can get pretty long. Check out the video to see how it works.

Wednesday, January 8, 2020

Lookup Two Tables to Bring Back Matches in Both


This video will cover the INNER JOIN merge capability in Excel Power Query. This type of join returns records from two reference tables that have matching values in both tables. We are basically looking for matching records from two tables and only those records that have a common field ( or key) are brought back in a results table. In INNER JOIN comes from SQL and it's among the different join types available. It's nice that it comes with Power Query so you don't need a fancy database like Oracle, SQL Server or MySQL.