I'm new to Power Query and I can't figure out how to do the following:
I have two tables
"REQUESTED"
| Date | ReqNumber | Client | SKU | ReqQuantity |
|---|---|---|---|---|
| Jan-01 | Z10 | 1 | A | 2 |
| Feb-05 | Z11 | 1 | A | 3 |
"SENT"
| Date | Client | SKU | Quantity |
|---|---|---|---|
| Jan-15 | 1 | A | 1 |
| Feb-02 | 1 | A | 3 |
| Mar-10 | 1 | A | 5 |
What I want to achieve is that I want to merfe the tables and allow me to filter by date, showing the corresponding amount requested/sent
For Example: If I filter dates between Jan-01 / Jan - 31
I should get the following:
"REQUESTED - SENT"
| Date | ReqNumber | Client | SKU | ReqQuantity | SentQuantity |
|---|---|---|---|---|---|
| Jan-01 | Z10 | 1 | A | 2 | 1 |
If I filter dates between Jan-01 / Feb - 28
I should get the following:
"REQUESTED - SENT"
| Date | ReqNumber | Client | SKU | ReqQuantity | SentQuantity |
|---|---|---|---|---|---|
| Jan-01 | Z10 | 1 | A | 2 | 2 |
| Feb-05 | Z11 | 1 | A | 3 | 2 |
If I filter dates between Jan-01 / Mar- 15
I should get the following:
"REQUESTED - SENT"
| Date | ReqNumber | Client | SKU | ReqQuantity | SentQuantity |
|---|---|---|---|---|---|
| Jan-01 | Z10 | 1 | A | 2 | 2 |
| Feb-05 | Z11 | 1 | A | 3 | 3 |
Is this posiible in Power Query? Thanks!


