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

To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.

Reply
gilsonshinkawa
New Member

Calculating percentage in a row

Hi Everyone,

I would like help in calculating percentage in a row.MatrixValues.png

If you see in the image i made this matrix using month and year, i would like to make same matrix but using percentage.

Example in excel:%.pngI want divide each value in the collumn by the first value in the row. 
I dont know if i was clear.

 

Can anyone help me do this in Power BI.

 

Thanks,

Gilson Shinkawa

 

 

1 ACCEPTED SOLUTION
v-yulgu-msft
Microsoft Employee
Microsoft Employee

Hi @gilsonshinkawa,

 

Based on my assumption, the table structure is like below, if so, please add a calculated column to list the percentage.

1.PNG

Percentage =
Sheet1[Value]
    / CALCULATE (
        MAX ( Sheet1[Value] ),
        FILTER (
            ALLEXCEPT ( Sheet1, Sheet1[Date] ),
            Sheet1[Date2]
                = CALCULATE ( MIN ( Sheet1[Date2] ), ALLEXCEPT ( Sheet1, Sheet1[Date] ) )
        )
    )

2.PNG

 

Best regards,

Yuliana Gu

Community Support Team _ Yuliana Gu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
v-yulgu-msft
Microsoft Employee
Microsoft Employee

Hi @gilsonshinkawa,

 

Based on my assumption, the table structure is like below, if so, please add a calculated column to list the percentage.

1.PNG

Percentage =
Sheet1[Value]
    / CALCULATE (
        MAX ( Sheet1[Value] ),
        FILTER (
            ALLEXCEPT ( Sheet1, Sheet1[Date] ),
            Sheet1[Date2]
                = CALCULATE ( MIN ( Sheet1[Date2] ), ALLEXCEPT ( Sheet1, Sheet1[Date] ) )
        )
    )

2.PNG

 

Best regards,

Yuliana Gu

Community Support Team _ Yuliana Gu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Hi @v-yulgu-msft!
Thanks for the help!
It worked here!

Could you help me in another one?
It's kind similar of this problem.

I'll open another post.

 

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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

Top Solution Authors
Top Kudoed Authors