Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Hi Everyone,
I would like help in calculating percentage in a row.
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:I 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
Solved! Go to Solution.
Hi @gilsonshinkawa,
Based on my assumption, the table structure is like below, if so, please add a calculated column to list the percentage.
Percentage = Sheet1[Value] / CALCULATE ( MAX ( Sheet1[Value] ), FILTER ( ALLEXCEPT ( Sheet1, Sheet1[Date] ), Sheet1[Date2] = CALCULATE ( MIN ( Sheet1[Date2] ), ALLEXCEPT ( Sheet1, Sheet1[Date] ) ) ) )
Best regards,
Yuliana Gu
Hi @gilsonshinkawa,
Based on my assumption, the table structure is like below, if so, please add a calculated column to list the percentage.
Percentage = Sheet1[Value] / CALCULATE ( MAX ( Sheet1[Value] ), FILTER ( ALLEXCEPT ( Sheet1, Sheet1[Date] ), Sheet1[Date2] = CALCULATE ( MIN ( Sheet1[Date2] ), ALLEXCEPT ( Sheet1, Sheet1[Date] ) ) ) )
Best regards,
Yuliana Gu
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.