Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowJuly 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more
Hi I have matrix and each column have a different color coding
example points < 50 = red , utilisation <40% = red
ho to do it ?
Solved! Go to Solution.
Hi @Anonymous
You could create a measure like below:
Measure Value Color = IF(MAX('Table'[Point])<=50,"#ff0000","#000000")
Then:
Then you will see:
More about how to configure color measure,you can see the below:
https://community.powerbi.com/t5/Desktop/Colour-formatting-on-Measure/m-p/864818#M414953
Wish it is helpful for you!
Hi @Anonymous ,
Best Regard
Lucien Wang
Hi @Anonymous
You could create a measure like below:
Measure Value Color = IF(MAX('Table'[Point])<=50,"#ff0000","#000000")
Then:
Then you will see:
More about how to configure color measure,you can see the below:
https://community.powerbi.com/t5/Desktop/Colour-formatting-on-Measure/m-p/864818#M414953
Wish it is helpful for you!
@Anonymous , You can create a color measure and do it. The measure can check for measure value or dimension value
example
Color sales = if(AVERAGE(Sales[Sales Amount])<170,"green","red")
Color Year = if(FIRSTNONBLANK('Table'[Year],2014) <=2016,"lightgreen",if(FIRSTNONBLANK('Table'[Year],2014)>2018,"red","yellow"))
You can refer to my video for more details: https://www.youtube.com/watch?v=RqBb5eBf_I4
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
Join Fabric Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.
| User | Count |
|---|---|
| 27 | |
| 24 | |
| 18 | |
| 15 | |
| 15 |
| User | Count |
|---|---|
| 63 | |
| 42 | |
| 41 | |
| 39 | |
| 37 |