A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data
Hi Chad
Given your Table1 query overwrites previous days' data on each Refresh that's pretty straightforward. The "tricky" point is to create a self-referencing Table2 query:
- Create a query (with Power Query) from your Table1
- Rename (in the Power Query Editor) that new query Table2
- Load it to a sheet
- Rename the resulting table Table2 (below I assume it's currently named Table_wxyz)
- Edit the query and change the Source step from
= Excel.CurrentWorkbook(){[Name="**Table\_wxyz**"]}[Content]
to
= Excel.CurrentWorkbook(){[Name="**Table2**"]}[Content]
(now query Table2 references itself)
- Append Table1 to that query
- Remove Duplicates on [PO Number] & [Part Number]
when you're complete your query should look like:
- Closed & Load
- Finaly enable option "Refresh data when opening the file" on query Table2 (as you probably did for Table1)