Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredJoin 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.
Hi Experts,
I am novice to power bi and struggling with conditional formatting subtotals of specific column in a matrix based on subtotals of another column as shown below: For example: If subtotal of column "commsn." is less than or equal to subtotal of column "laying", a green icon should be displayed next to subtotal of column "commsn." or font color should change to green. Otherwise it should turn red. Please help.
Solved! Go to Solution.
hello !
you shoild use conditional formating based on measure. Apply condition formation only for totals
measure should looks like
measure = if([commsn]<[laying],"green","red")
That's a perfect solution Anton,
Thanks a ton!
Thanks for prompt response Solomon.
Laying and commsn are activities derrived from DIM table Activity.
I tried to create measure with SUMX and FILTER but unable to figure out how to filter on tables with joins. I am still uncomfortable with DAX. Can I share my pbix file on your email id?
of course you can feel free for send me email I sent my mail in private message
hello !
you shoild use conditional formating based on measure. Apply condition formation only for totals
measure should looks like
measure = if([commsn]<[laying],"green","red")