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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
styburd
New Member

Help: Double Counting Issue in Column Chart

Hello, I am trying to create a column chart to show the dollar value of commitments that were made each year to investment managers, but my data is too granular and results in double counting. (I need to keep the granularity for other parts of the dashboard).

For example in the picture below, there are three unique funds that commitments were made to, and each fund has three portfolio companies. For my chart I have vintage year on the x-axis and the total commitment on the y-axis. The value that I want to have would be $30m ($10m committed to fund A and $20m committed to fund B) in 2020 and $15m in 2021. The problem is that the program is summing the entire commitment column based on the vintage year and producing $90m for 2020 and $45m for 2021, is there a way to make the sum not double count and only sum unique fund names in each vintage year?

styburd_0-1669142941931.png

 

1 ACCEPTED SOLUTION
Mikelytics
Resident Rockstar
Resident Rockstar

Hi @styburd 

 

Please try the following:

 

Disclaimer: only works when the total commitment per Fund per Year is everytime the same like in your table.  A is everytime 10.0000, B is20.000 and c is 15.000

 

Base Table

Mikelytics_0-1669144021877.png

 

Measure

 

Fund Measure = 

var var_Summarized_Table = 
    SUMMARIZE('Table',
        'Table'[Fund Name],'Table'[Vintage Year],"Total Commitment",MAX('Table'[Total Commitment]))

RETURN
    SUMX(
        var_Summarized_Table,
        [Total Commitment]
    )

 

 

Mikelytics_1-1669144418303.png

Mikelytics_2-1669144461649.png

 

Best regards

Michael

-----------------------------------------------------

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly. Appreciate your thumbs up!

@ me in replies or I'll lose your thread.

-----------------------------------------------------

LinkedIn

 

 

 

 

 

 

 

------------------------------------------------------------------
Visit my blog datenhungrig which I recently started with content about business intelligence and Power BI in German and English or follow me on LinkedIn!

View solution in original post

1 REPLY 1
Mikelytics
Resident Rockstar
Resident Rockstar

Hi @styburd 

 

Please try the following:

 

Disclaimer: only works when the total commitment per Fund per Year is everytime the same like in your table.  A is everytime 10.0000, B is20.000 and c is 15.000

 

Base Table

Mikelytics_0-1669144021877.png

 

Measure

 

Fund Measure = 

var var_Summarized_Table = 
    SUMMARIZE('Table',
        'Table'[Fund Name],'Table'[Vintage Year],"Total Commitment",MAX('Table'[Total Commitment]))

RETURN
    SUMX(
        var_Summarized_Table,
        [Total Commitment]
    )

 

 

Mikelytics_1-1669144418303.png

Mikelytics_2-1669144461649.png

 

Best regards

Michael

-----------------------------------------------------

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly. Appreciate your thumbs up!

@ me in replies or I'll lose your thread.

-----------------------------------------------------

LinkedIn

 

 

 

 

 

 

 

------------------------------------------------------------------
Visit my blog datenhungrig which I recently started with content about business intelligence and Power BI in German and English or follow me on LinkedIn!

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors