Forum Discussion
rsbin
3 years agoCommunity Champion
Virtual Table within a Calculated Column
Good Afternoon,
Looking for some assistance with a Calculated Column dealing with Inventory.
Have a Table of On Hand Inventory.
Facility
Item
Pre-AdjustmentDate
OnHandPreAdjustment ...
- 3 years ago
Something like this might work...
Adjustment =var _vTable =FILTER(SUMMARIZE(txTable,txTable[Item],txTable[Facility],txTable[Date],"sumQTY", SUM(txTable[Qty.])),txTable[Item] = onHandTable[Item] && txTable[Facility] = onHandTable[Facility] && txTable[Date] = onHandTable[Adjustment Date])ReturnSUMX(_vTable,[sumQTY])