Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
ive got this dax below and keep getting a resource error. can anyone help me optimize this? trying to only see item numbers in these set locations. "44WAX", "52WAX", "62WAX", "MAINWAX". any help is appreciated.
Solved! Go to Solution.
Try
SLWohQty =
CALCULATE (
SUM ( Fact_Inventory[InventoryPhysical] ),
Fact_Inventory[Warehouse] IN { "44WAX", "52WAX", "62WAX", "MAINWAX" }
)
Try
SLWohQty =
CALCULATE (
SUM ( Fact_Inventory[InventoryPhysical] ),
Fact_Inventory[Warehouse] IN { "44WAX", "52WAX", "62WAX", "MAINWAX" }
)
User | Count |
---|---|
15 | |
9 | |
8 | |
6 | |
5 |
User | Count |
---|---|
31 | |
19 | |
15 | |
7 | |
6 |