This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
Hello Community,
I have tried to create a measure to add to my visual type table where I want to accumulate the percentage of capital participation per client, the table is ordered from client with greater capital to client with less capital, and I already have a mendida that brings me the % of participation.
This is the measure that I would like to accumulate
I have tried this formula
with this measure have how result '1' for all the rows
i need to accumulate the '% Capital' column
Hi @WilliamForero ,
You can update the measure [Cumulative %] as below and check if that is what you want.
Cumulative % =
VAR _culvalue =
CALCULATE (
SUM ( 'Base sectors'[Capital] ),
FILTER (
ALLSELECTED ( 'Base Sectors' ),
'Base Sectors'[Cut] <= MAX ( DimCalendar[Cut] )
)
)
VAR _all =
CALCULATE ( SUM ( 'Base sectors'[Capital] ), ALLSELECTED ( 'Base Sectors' ) )
RETURN
DIVIDE ( _culvalue, _all, 0 )
If the above one can't help you get the expected result, please provide some raw data in your table 'Base sectors' (exclude sensitive data) with Text format and your expected result with backend logic and special examples. It would be helpful to find out the solution. You can refer the following link to share the required info:
How to provide sample data in the Power BI Forum
And It is better if you can share a simplified pbix file. You can refer the following link to upload the file to the community. Thank you.
How to upload PBI in Community
Best Regards
@Syndicate_Admin , Try like
% Capital = Sumx( Values(DimCalendario[Cut]) , calculate( DIVIDE(SUM('Base Sectors'[Capital]),CALCULATE(sum('Base Sectors'[Capital]),
filter(ALLSELECTED(DimCalendario),DimCalendario[Cut]=max(DimCalendario[Cut]))))))
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 30 | |
| 23 | |
| 23 | |
| 17 | |
| 15 |
| User | Count |
|---|---|
| 62 | |
| 36 | |
| 30 | |
| 25 | |
| 21 |