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

Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more

Reply
Hernán
Frequent Visitor

Matrix accumulative percentages by Rows and percentage accumulate in the Total

Hi Team,

I hope you are doing well!

I created a matrix with individuals percentages, but  I need to create the matrix with accumulative percentages in the rows and the Total

Image1. The matrix with individuals percentages.

Matrix percentage individuals.PNG

Image2. The values selected for the matrix. In the values there is a measure created.

Matrix values selected percentage.PNG

Image3. The result I expected.

Percentage study by target days - expected.PNG

I tried:

To created a running total but I couldn't achieve it.

I was thinkig in create a new matrix for the values in the Totals. Again, I couldn't reach that goals.

 

Note:

  • I attached the .pbi
  • I'm improving my english skills. Thank you for your understanding.

Thank you a lot!

 

Best Regards,

Hernán

1 ACCEPTED SOLUTION
vapid128
Solution Specialist
Solution Specialist

image.png

 

Measure = 
DIVIDE(
    CALCULATE(
        [Closed],
        FILTER(
            ALLSELECTED(Data1[DAYS]),
            Data1[DAYS]<=MAX(Data1[DAYS]) 
        )
    ),
    CALCULATE([Closed],ALLSELECTED(Data1[DAYS]))
)

View solution in original post

2 REPLIES 2
Hernán
Frequent Visitor

@vapid128, thank you so much! It is perfect. Thank a lot!

vapid128
Solution Specialist
Solution Specialist

image.png

 

Measure = 
DIVIDE(
    CALCULATE(
        [Closed],
        FILTER(
            ALLSELECTED(Data1[DAYS]),
            Data1[DAYS]<=MAX(Data1[DAYS]) 
        )
    ),
    CALCULATE([Closed],ALLSELECTED(Data1[DAYS]))
)

Helpful resources

Announcements
Notebook Gallery Carousel1

NEW! Community Notebooks Gallery

Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.

April2025 Carousel

Fabric Community Update - April 2025

Find out what's new and trending in the Fabric community.

Top Kudoed Authors