Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
I have a table as attached in snapshot below.
I want to create a measure which will incidate "Order More Stock" if Units available is less than Reorder level. If Units available is greater than reorder level then indicate "Sufficient stock"
Please see: Units available should be summed at all warehouses but Reorder level should be considered only once as shown in image above.
Thanks in advance
Solved! Go to Solution.
Hi @Anonymous ,
Please try this measure:
Measure =
var max_reorder = CALCULATE(MAX('Table'[ReOrder Level]),ALLEXCEPT('Table','Table'[Product SKU]))
var sum_units = SUM('Table'[Units Available])
return SWITCH(TRUE(),
sum_units<max_reorder,"Order More Stock",
sum_units>=max_reorder,"Sufficient stock")
Best Regards,
Liang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@Anonymous If you have Product SKU in a table visualization, then it out to be:
Measure =
VAR __UnitsAvailble = SUM('Table'[Units Available])
VAR __ReorderLevel = MAX('Table'[ReOrder Level])
RETURN
IF(__ReorderLevel <= __UnitsAvailable,"Order More Stock","Sufficient Stock")
Using your formula, Reorder Level is getting summed instead of taking Max
Hi @Anonymous ,
Please try this measure:
Measure =
var max_reorder = CALCULATE(MAX('Table'[ReOrder Level]),ALLEXCEPT('Table','Table'[Product SKU]))
var sum_units = SUM('Table'[Units Available])
return SWITCH(TRUE(),
sum_units<max_reorder,"Order More Stock",
sum_units>=max_reorder,"Sufficient stock")
Best Regards,
Liang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.