Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Hi, I would like to set a condition whereby if the value in "date range' column shows 'within date range', the rating column and true rating outcome will change color depending on whether it is MOD (YELLOW) & SUS (GREEN). May i know how can i achieve this?
Solved! Go to Solution.
Hi @TTPP81 ,
You can create measures that adjust your formatting, for example:
CondFmt_Rating =
VAR __timeValue = SELECTEDVALUE(CF_Test_Table[Date Range])
VAR __ratingValue = SELECTEDVALUE(CF_Test_Table[Rating])
RETURN
SWITCH(
TRUE(),
__timeValue = "Within" && __ratingValue = "MOD", "#FEC0BF", // your yellow hex code
__timeValue = "Within" && __ratingValue = "SUS", "#99E3DD" // your green hex code
)
CondFmt_TrueRating =
VAR __timeValue = SELECTEDVALUE(CF_Test_Table[Date Range])
VAR __trueValue = SELECTEDVALUE(CF_Test_Table[True Rating])
RETURN
SWITCH(
TRUE(),
__timeValue = "Within" && __trueValue = "MOD", "#FEC0BF", // your yellow hex code
__timeValue = "Within" && __trueValue = "SUS", "#99E3DD" // your green hex code
)
Once you've created the measures, you apply them to the visual using Cell Elements > Series (the column you want to format) > Background Colour (fx) > Field Value > select conditional format measure from dropdown list.
In this example, I get the following output:
Pete
Proud to be a Datanaut!
Hi @TTPP81 ,
You can create measures that adjust your formatting, for example:
CondFmt_Rating =
VAR __timeValue = SELECTEDVALUE(CF_Test_Table[Date Range])
VAR __ratingValue = SELECTEDVALUE(CF_Test_Table[Rating])
RETURN
SWITCH(
TRUE(),
__timeValue = "Within" && __ratingValue = "MOD", "#FEC0BF", // your yellow hex code
__timeValue = "Within" && __ratingValue = "SUS", "#99E3DD" // your green hex code
)
CondFmt_TrueRating =
VAR __timeValue = SELECTEDVALUE(CF_Test_Table[Date Range])
VAR __trueValue = SELECTEDVALUE(CF_Test_Table[True Rating])
RETURN
SWITCH(
TRUE(),
__timeValue = "Within" && __trueValue = "MOD", "#FEC0BF", // your yellow hex code
__timeValue = "Within" && __trueValue = "SUS", "#99E3DD" // your green hex code
)
Once you've created the measures, you apply them to the visual using Cell Elements > Series (the column you want to format) > Background Colour (fx) > Field Value > select conditional format measure from dropdown list.
In this example, I get the following output:
Pete
Proud to be a Datanaut!
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
15 | |
12 | |
8 | |
8 | |
7 |
User | Count |
---|---|
15 | |
13 | |
9 | |
7 | |
6 |