- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Conditional format Matrix Column
Hi
I have a Matrix visual that I would like to only conditional format the background colour for the % column with the header 'Yes' as highlighted below. Can you please tell me is this is possible wit DAX
0%-98% = Red
98%-99% Orange
99%-100% = Green
thank you
Richard
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

@cottrera , Create a color measure and use that in conditional formatting using filed value option
Color = if(Max(Table[Job completed with]) = "Yes", Switch(True() ,
[%] <= 98% ,"Red",
[%] <= 99% ,"Orange",
[%] <= 100% , "Green"), "white" )
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Thank you amitchandak for your quick response this measure worked fine. I just needed to change the % to numbers. For example 1 instead of 100%
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

@cottrera , Create a color measure and use that in conditional formatting using filed value option
Color = if(Max(Table[Job completed with]) = "Yes", Switch(True() ,
[%] <= 98% ,"Red",
[%] <= 99% ,"Orange",
[%] <= 100% , "Green"), "white" )

Helpful resources
Subject | Author | Posted | |
---|---|---|---|
07-12-2024 12:51 AM | |||
08-13-2024 10:24 AM | |||
09-13-2024 05:19 AM | |||
Anonymous
| 04-18-2024 12:46 AM | ||
07-19-2023 01:38 AM |
User | Count |
---|---|
125 | |
103 | |
84 | |
49 | |
46 |