The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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 | |
2 | |
2 | |
2 | |
1 |
User | Count |
---|---|
7 | |
4 | |
4 | |
3 | |
2 |