March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch 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!!
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
23 | |
15 | |
12 | |
9 | |
8 |
User | Count |
---|---|
41 | |
32 | |
29 | |
12 | |
12 |