Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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.
User | Count |
---|---|
3 | |
3 | |
2 | |
2 | |
1 |
User | Count |
---|---|
9 | |
4 | |
3 | |
3 | |
3 |