Hello everybody!
I have the following two tables:
tblInventory
tblChanges
The tblInventory shows the current inventory level.
The tblChanges shows the different positive and negative bookings for each day.
Know I need a measure, that shows me for the current week the actual inventory from tblInventory and for last week the actual inventory (tblInventory) - Value (tblChanges).
How would you do that?
I have the following two tables:
tblInventory
Article | Value | Date (Today) |
AA1 | 5000 | 07.12.2019 |
tblChanges
Article | Value | Date |
AA1 | -500 | 06.10.2019 |
AA1 | 2500 | 05.11.2019 |
The tblInventory shows the current inventory level.
The tblChanges shows the different positive and negative bookings for each day.
Know I need a measure, that shows me for the current week the actual inventory from tblInventory and for last week the actual inventory (tblInventory) - Value (tblChanges).
How would you do that?