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