Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Anonymous
Not applicable

Need to Calculate Low Stock Items

I have a table as attached in snapshot below.Problem 25.PNG

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

1 ACCEPTED 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")

Vlianlmsft_0-1628217467108.png

 


Best Regards,
Liang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

3 REPLIES 3
Greg_Deckler
Community Champion
Community Champion

@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")


Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...
Anonymous
Not applicable

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")

Vlianlmsft_0-1628217467108.png

 


Best Regards,
Liang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors