Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
So i have two columns it look something like this:
5 12
3,4 3,4
12 9
And if i have other values in the same row i want to change background color to red.
Something like
5 12
3,4 3,4
12 9
Solved! Go to Solution.
Hi,
Please check the below picture and the attached pbix file.
1. create a measure like below.
Color format measure: =
IF( SUM(Data[Column1]) <> SUM(Data[Column2]), "Red")
2. each column, click down arrow, and then select Conditional formatting -> Background color
Hi,
Please check the below picture and the attached pbix file.
1. create a measure like below.
Color format measure: =
IF( SUM(Data[Column1]) <> SUM(Data[Column2]), "Red")
2. each column, click down arrow, and then select Conditional formatting -> Background color
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.