Forum Discussion
Matt_JEM
1 year agoHelper I
Warehouse Qty
Good Day All. I need help with the following please. I thank you in advance for your help and assistance. I have ave build I slicer that list the warehouses. What I want to achieve is that wh...
- 1 year ago
PBI file attached.
Hope this helps.
Bibiano_Geraldo
1 year agoSuper User
hI Matt_JEM ,
Please try the bellow measure:
WarehouseQTY =
SUMX(
FILTER(
'InvWarehouse',
'InvWarehouse'[QtyOnHand] > 0
),
'InvWarehouse'[QtyOnHand]
)
Please let me know if it working.