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
Anonymous
Not applicable

calculate value and drop duplicates in groups

Here is the data and I want to drop duplicate in "name" level by get the max value,

null_0-1664351670562.png

 

for example, after drop duplicates in name level, the sum value of type "high" is 2+5 rather than 2+2+5+4

do you have any ideas? Thank you.

 

1 ACCEPTED SOLUTION

Hi,

thank you for your feedback, and please check the below picture and the attached pbix file whether it suits your requirement.

 

Jihwan_Kim_0-1664370338607.png

 

 

Expected outcome measure: =
SUMX (
    SUMMARIZE ( Data, Data[Type], Data[Category] ),
    CALCULATE ( MAX ( Data[Value] ) )
)

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Go to My LinkedIn Page


View solution in original post

3 REPLIES 3
Jihwan_Kim
Super User
Super User

Hi,

I am not sure if I understood your question correctly, but please check the below picture and the attached pbix file.

It is for creating a new table.

 

Jihwan_Kim_0-1664367798856.png

 

New table create =
GROUPBY (
    Data,
    Data[Type],
    Data[Category],
    "@MaxValue", MAXX ( CURRENTGROUP (), Data[Value] )
)

 

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Go to My LinkedIn Page


Anonymous
Not applicable

actually I am finding a way to create a measure that calculate the sum of the max value in category group,

the result is exactly like this,

null_0-1664368426091.png

is there a way to change the table into a measure? Thank you.

 

Hi,

thank you for your feedback, and please check the below picture and the attached pbix file whether it suits your requirement.

 

Jihwan_Kim_0-1664370338607.png

 

 

Expected outcome measure: =
SUMX (
    SUMMARIZE ( Data, Data[Type], Data[Category] ),
    CALCULATE ( MAX ( Data[Value] ) )
)

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Go to My LinkedIn Page


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