Forum Discussion
em12963
Helper I
3 years agoIcon conditional formatting using dax
I have a matrix custom visual with three columns which I want to use an icon with values conditional formatting. Since I would like to customised my icon colour in a dax, I created 3 calculated measu...
amitchandak
Super User
3 years agoem12963 , Add additional condition like
Switch(True() ,
MAx(Table[column field]) ="ABC" , Switch(<Code>),
MAx(Table[column field]) ="DEF" , Switch(<Code>),
Switch(<Code>)
)