Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
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.
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!