Forum Discussion
wujunmin
4 years agoAdvocate III
Add conditional formatting to sparkline by DAX
Measure1(mark it as image URL): Sparkline =
VAR MaxValue =
MAXX ( VALUES ( 'table'[month]), [KPI])
VAR MinValue=
MINX ( VALUES ( 'table'[month]), [KPI])
VAR Max_Width=
IF(MinValu...
GoofyCraig
3 years agoNew Member
I love your solution to conditonal formatting using DAX as it show min, maxc and a zero line. I was having a challenge getting your code to work...let me know if you would be able to help me troubleshoot.