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
i am trying to create a measure for background color but i am having issue.
Solved! Go to Solution.
Hi @Anonymous ,
")" is missing at the end of the expression.
BackgroundColor =
IF (
SELECTEDVALUE ( '5DaysSLA'[Working Days] ) < 3,
"#008000",
IF (
SELECTEDVALUE ( '5DaysSLA'[Working Days] ) > 3
&& SELECTEDVALUE ( '5DaysSLA'[Working Days] ) < 5,
"#FFBF00",
"#FF0000"
)
)
In addition, you can also try this measure, which works the same as yours:
BackgroundColor =
SWITCH (
TRUE (),
SELECTEDVALUE ( '5DaysSLA'[Working Days] ) < 3, "#008000",
SELECTEDVALUE ( '5DaysSLA'[Working Days] ) > 3
&& SELECTEDVALUE ( '5DaysSLA'[Working Days] ) < 5, "#FFBF00",
"#FF0000"
)
Best Regards,
Icey
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous ,
")" is missing at the end of the expression.
BackgroundColor =
IF (
SELECTEDVALUE ( '5DaysSLA'[Working Days] ) < 3,
"#008000",
IF (
SELECTEDVALUE ( '5DaysSLA'[Working Days] ) > 3
&& SELECTEDVALUE ( '5DaysSLA'[Working Days] ) < 5,
"#FFBF00",
"#FF0000"
)
)
In addition, you can also try this measure, which works the same as yours:
BackgroundColor =
SWITCH (
TRUE (),
SELECTEDVALUE ( '5DaysSLA'[Working Days] ) < 3, "#008000",
SELECTEDVALUE ( '5DaysSLA'[Working Days] ) > 3
&& SELECTEDVALUE ( '5DaysSLA'[Working Days] ) < 5, "#FFBF00",
"#FF0000"
)
Best Regards,
Icey
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
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.
| User | Count |
|---|---|
| 5 | |
| 3 | |
| 2 | |
| 2 | |
| 1 |
| User | Count |
|---|---|
| 10 | |
| 5 | |
| 5 | |
| 5 | |
| 4 |