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

Be one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now

Reply

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 @vrushabjain510 ,

 

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
Super User
Super User

@vrushabjain510 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!:
Power BI Cookbook Third Edition (Color)

DAX is easy, CALCULATE makes DAX hard...

Using your formula, Reorder Level is getting summed instead of taking Max

 

Hi @vrushabjain510 ,

 

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
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

Dec Fabric Community Survey

We want your feedback!

Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.