I think this is an insanely easy problem to solve, but I am not positive how to go about it correctly.
Here is the scenario. I pull the same report every day. This report compares the previous day's report, stored in Table1, and compares it to the current day's report Table2. This report has an order ID and a dollar value. I need to have a new query that will find the same order ID from the previous day and then see the shift in dollar value. I only want to include OrderIDs that are on both. So for example
Table1
OrderID $
12345 5
23456 6
Table2
OrderID $
12345 4
23456 7
So the query would populate,
Query1
OrderID $
12345 -1
23456 1
Here is the scenario. I pull the same report every day. This report compares the previous day's report, stored in Table1, and compares it to the current day's report Table2. This report has an order ID and a dollar value. I need to have a new query that will find the same order ID from the previous day and then see the shift in dollar value. I only want to include OrderIDs that are on both. So for example
Table1
OrderID $
12345 5
23456 6
Table2
OrderID $
12345 4
23456 7
So the query would populate,
Query1
OrderID $
12345 -1
23456 1