Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
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
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.