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
Kisame01
Frequent Visitor

Distinct group sum

Hi Guys I just need the dax measure for the following i need to get the distinct productkey sum(productvalue) is this possible to do it in one measure?

 

Much appreciated guys

YearBoxKeyProductKeyProductSubcategoryKeyProduct value
2016161168049245.57100824
2016161187676045.57100824
2016161182740845.57100824
20161613673245.57100824
201615936054891.0773288
201616018294726.42357297
201616020239326.42357297
20161603866526.42357297
2016161173233245.57100824
201616019288926.42357297
201616018270846.42357297
201616017277246.42357297
20161593326521.0773288
1 ACCEPTED SOLUTION

7 REPLIES 7
Anonymous
Not applicable

[Sum of Value] = sum ( T[Product Value] )

This sum will adjust itself as you start slicing and dicing your data.

Best
Darek
Anonymous
Not applicable

@Kisame01 

A quick question, say looking at ProductKey =59 and Year=2016. What would the answer you are looking for be?  

2.154658

 

 

 

Hi Nick_M, thanks for the response

 

Maybe my question wasn't to clear if you look at the product key and the product value for those product keys are exactly the same. 

 

So i want to be able to actually group all of the productkeys together and devide the product value by the number of ProductSubCategoryKeys because. Looking at Productkey 59 both subcatecorykeys '3605489' and '332652' make up the productvalue of '1.0773288' so i need a new column with new values so I can get the true sum of the value.

 

Nick_M I hope I am making sense, or I am not even sure if I am over complicating things.

 

Thanks again Smiley Happy

 

@Kisame01 ,

 

Something like this?

Naamloos.png

 

Calculated column

Expected Result = DIVIDE(
    CALCULATE(
        SUM('Table'[ProductSubcategoryKey]);
         FILTER('Table';
    'Table'[ProductKey]=EARLIER('Table'[ProductKey])));
    CALCULATE(
        COUNT('Table'[ProductKey]);
        FILTER('Table';
    'Table'[ProductKey]=EARLIER('Table'[ProductKey]))))

Greets,

Ronald

Hi Roland,

 

Not too sure what happens here. But I basically just need in this example Productkey 59's Product value will be 1.0773288/2 because there are 2 product keys of 59. The 1.0773288 is the full amount for the productkey 59, If that makes sense.

 

So this is what my epected result should be. If it makes sense

 

YearBoxKeyProductKeyProductSubcategoryKeyProduct valueExpected Result 
201615936054891.07732880.5386644 
20161593326521.07732880.53866441.0773288‬
201616018294726.423572971.070595495‬ 
201616020239326.423572971.070595495‬ 
20161603866526.423572971.070595495‬ 
201616019288926.423572971.070595495‬6.42357297
201616018270846.423572971.070595495‬ 
201616017277246.423572971.070595495‬ 
2016161168049245.571008249.114201648‬ 
2016161187676045.571008249.114201648‬ 
2016161182740845.571008249.114201648‬45.57100824
20161613673245.571008249.114201648‬ 
2016161173233245.571008249.114201648‬ 
    Total51.99458121 

Magic Roland. Smiley Very Happy

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.

Top Solution Authors