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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
aulona12
Frequent Visitor

How to create calculated rows in the matrix?

Hello everyone, 

 

I am trying to add calculated row % in the matrix but i am having a hard time. Some help please? 

 

This is the original table : 

aulona12_1-1678119760085.png

 

 

This is the desired result (the additions are all in red)

 

aulona12_2-1678119790362.png

 

 

 

Here is the formula view : 

 

aulona12_3-1678119830033.png

 

 

Thanks in advance for any help that you can provide

 

 

 

1 ACCEPTED SOLUTION
YukiK
Impactful Individual
Impactful Individual

Create a measure like the following and use it in your matrix instead:

Your Measure = 
DIVIDE(
    SUM(YourTable[YourColumn]),
    CALCULATE(
        SUM(YourTable[YourColumn]),
        ALLSELECTED(Yourtable[YourMonthColumn])
    )
)

 

Give it a thumbs up and accept as solution if you find this helpful!

View solution in original post

2 REPLIES 2
YukiK
Impactful Individual
Impactful Individual

Create a measure like the following and use it in your matrix instead:

Your Measure = 
DIVIDE(
    SUM(YourTable[YourColumn]),
    CALCULATE(
        SUM(YourTable[YourColumn]),
        ALLSELECTED(Yourtable[YourMonthColumn])
    )
)

 

Give it a thumbs up and accept as solution if you find this helpful!

This worked. Thank you for your suggestion.

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

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