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
ANM_97
Helper IV
Helper IV

DUBLICATE VALUES

Hello everyone!


I'm trying to calculate the value of the guarantees. I have this situation: A client can have only one guarantee, regardless of the number of loans. How can I calculate the total value of guarantees without multiplying their value?

 

Example:

CUSTOMER_IDLOAN_IDCOLLATERAL_VALUE
100A1000
101B1200
102C1500
103D200
103E200
104F1500
105G500
105H500
TOTAL: 

=1000 + 1200 + 1500+ 200 + 1500 +500 

=5900

 

Thank you for help!

1 ACCEPTED SOLUTION
Greg_Deckler
Super User
Super User

@ANM_97 If I understand correctly, I believe you want:

Measure = 
  SUMX(
    SUMMARIZE('Table',[Customer_ID],"__Average",AVERAGE([Collateral_Value])),
    [__Average]
  )

@ 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...

View solution in original post

3 REPLIES 3
amitchandak
Super User
Super User

@ANM_97 , Try a measure like

sumx(Values(Table[CUSTOMER_ID]), max(Table[COLLATERAL_VALUE]))

or

sumx(Summarize(Table[CUSTOMER_ID],"_1", max(Table[COLLATERAL_VALUE])),[_1])

Greg_Deckler
Super User
Super User

@ANM_97 If I understand correctly, I believe you want:

Measure = 
  SUMX(
    SUMMARIZE('Table',[Customer_ID],"__Average",AVERAGE([Collateral_Value])),
    [__Average]
  )

@ 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...
Pragati11
Super User
Super User

Hi @ANM_97 ,

 

You can simply create a measure:

totalCollateralValue = SUM(tablename[COLLATERAL_VALUE])

 

thanks,

Pragati

Best Regards,

Pragati Jain


MVP logo


LinkedIn | Twitter | Blog YouTube 

Did I answer your question? Mark my post as a solution! This will help others on the forum!

Appreciate your Kudos!!

Proud to be a Super User!!

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.