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

Get certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register 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
November Carousel

Fabric Community Update - November 2024

Find out what's new and trending in the Fabric Community.

Live Sessions with Fabric DB

Be one of the first to start using Fabric Databases

Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.

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! Early Bird pricing ends December 9th.

Nov PBI Update Carousel

Power BI Monthly Update - November 2024

Check out the November 2024 Power BI update to learn about new features.