Hi All,
Can someone help in correcting the below DAX.
I am trying to add conditional formatting based on the below DAX which has different Groups and has to meet 2 different conditions.
It's working but it applies only for MS SL group.
HI @RanjanThammaiah ,
Has your problem been solved, if so, please consider Accept a correct reply as the solution or share your own solution to help others find it.
Best Regards
Lucien
Hi @RanjanThammaiah ,
Please try this:-
Color =
SWITCH (
SELECTEDVALUE ( Scorecard[Group] ),
"ACCELERATE" || "Innovate & Build"
|| "Market Segment"
|| "Protect",
SWITCH (
TRUE (),
SUM ( Scorecard[Total Score] ) > 50, "ColoredArrowDown",
SUM ( Scorecard[Total Score] ) > 40, "ColoredArrowRight",
"ColoredArrowUp"
),
"Industry" || "MS SL",
SWITCH (
TRUE (),
SUM ( Scorecard[Total Score] ) > 40, "ColoredArrowDown",
SUM ( Scorecard[Total Score] ) > 32, "ColoredArrowRight",
"ColoredArrowUp"
)
)
Thanks,
Samarth
Best Regards,
Samarth
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Connect on Linkedin
Join us for a free, hands-on Microsoft workshop led by women trainers for women where you will learn how to build a Dashboard in a Day!
User | Count |
---|---|
125 | |
78 | |
69 | |
54 | |
53 |
User | Count |
---|---|
191 | |
104 | |
83 | |
79 | |
78 |