Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Dax command for conditional highlighting

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:

 

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)
 
I'm getting an error which essentially says syntax for ')' and I can't work out where I've gone wrong! Is anything obvious jumping out at anyone?

 

 

1 ACCEPTED SOLUTION
AlB
Super User
Super User

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 

SU18_powerbi_badge

View solution in original post

2 REPLIES 2
AlB
Super User
Super User

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 

SU18_powerbi_badge

Anonymous
Not applicable

Ah!! I knew it would be something simple. Worked like a charm, thanks so much!!

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors