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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

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
Employee
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
Employee
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
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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