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 All,
I've been following along the Guy in a Cube video to set up conditional highlighting, and I've run into a problem with my dax code:
Solved! Go to Solution.
Hi @Anonymous
You are missing the RETURN part, necessary when you use variables:
highlighting =
VAR _Source =
VALUES ( Highlight[Source] )
VAR _tohighlight =
SELECTEDVALUE ( 'Trend_data'[Source] )
VAR _Colour =
VALUES ( Highlight[HTML_Colour] )
VAR _filtered =
ISFILTERED ( Highlight[Source] )
VAR _result =
SWITCH (
TRUE,
NOT ( _filtered ), "#5BAF8D",
_tohighlight IN _Source
&& _filtered, "#5BAF8D",
_Colour
)
RETURN
_result
Please mark the question solved when done and consider giving a thumbs up if posts are helpful.
Contact me privately for support with any larger-scale BI needs, tutoring, etc.
Cheers
Hi @Anonymous
You are missing the RETURN part, necessary when you use variables:
highlighting =
VAR _Source =
VALUES ( Highlight[Source] )
VAR _tohighlight =
SELECTEDVALUE ( 'Trend_data'[Source] )
VAR _Colour =
VALUES ( Highlight[HTML_Colour] )
VAR _filtered =
ISFILTERED ( Highlight[Source] )
VAR _result =
SWITCH (
TRUE,
NOT ( _filtered ), "#5BAF8D",
_tohighlight IN _Source
&& _filtered, "#5BAF8D",
_Colour
)
RETURN
_result
Please mark the question solved when done and consider giving a thumbs up if posts are helpful.
Contact me privately for support with any larger-scale BI needs, tutoring, etc.
Cheers
Ah!! I knew it would be something simple. Worked like a charm, thanks so much!!
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 |
---|---|
11 | |
9 | |
8 | |
6 | |
5 |
User | Count |
---|---|
19 | |
17 | |
11 | |
9 | |
9 |