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
Faye1901
Helper I
Helper I

Calculating Min by Category - unexpected results

I am trying to calculate the minimum value per product group but am not getting the result I expect with my calculated column. 

My data looks like the below, where I want the minimum value by Product. So for NPD00127 I would expect 8.56, for example. My calculated column looks like this: 

Min Demod Capability = calculate(MIN('Samples'[Fat]), ALLEXCEPT('Samples', 'Samples'[Plant], 'Samples'[Product]))
Capture.PNG

 

Any ideas on why this isn't working?
5 REPLIES 5
v-eqin-msft
Community Support
Community Support

Hi @Faye1901 ,

Did I answer your question? Please mark my reply as solution, thank you~

v-eqin-msft
Community Support
Community Support

Hi @Faye1901 ,

According to my understanding, you want to calculate the difference between the minimum value and Fat per Product , right?

 

You could use the following formula:

Min Demod Capability =
CALCULATE (
    MIN ( 'MinByCategory'[Fat] ),
    ALLEXCEPT ( 'MinByCategory', 'MinByCategory'[Product] )
)
Fat against Min Demond Cpacity =
[Fat] - [Min Demod Capability]

My visualization looks like this:

 8.20.1.1.png

Is the result what you want? If you have any questions, please upload some data samples and expected output.

Please do mask sensitive data before uploading.

 

Best Regards,

Eyelyn Qin

Greg_Deckler
Super User
Super User

@Faye1901 - Hard to be certain with what has been shared, but perhaps:

 

Measure =
  VAR __Product = MAX('Table'[Product])
RETURN
  MINX(FILTER(ALL('Table'),[Product] = __Product),[Fat])

 

If that is not it, please first check if your issue is a common issue listed here: https://community.powerbi.com/t5/Community-Blog/Before-You-Post-Read-This/ba-p/1116882

Also, please see this post regarding How to Get Your Question Answered Quickly: https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490

The most important parts are:
1. Sample data as text, use the table tool in the editing bar
2. Expected output from sample data
3. Explanation in words of how to get from 1. to 2. 


@ 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...
pranit828
Community Champion
Community Champion

HI @Faye1901 

 

Can you try 

Min Demod Capability = calculate(MIN('Samples'[Fat]), ALLEXCEPT('Samples', 'Samples'[Product]))

 

In your screenshot you have not selected the 'Samples'[Plant] column.





PBI_SuperUser_Rank@1x.png


Hope it resolves your issue? 
Did I answer your question? Mark my post as a solution!

Appreciate your Kudos, Press the thumbs up button!!
Linkedin Profile

Same result unfortunately: 
Capture.PNG

 


Note: Plant is selected in the filter pane, but take your point. 

 

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.