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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

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

@ 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!:
The Definitive Guide to Power Query (M)

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
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

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