Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
pbi
the above account stage column is a measure and I am trying to add consitional formatting using measure , and New color code is created suing below DAX query
Solved! Go to Solution.
Hi @utkarshshastri ,
If the value you are using for the condittional formatting is a measure you must use the measure itself and not the SELECTEDVALUE try the following:
New color code =
SWITCH([Account stage],
"High Awareness",1,
"Medium Awareness",2,
"Low Awareness",3,
"High conversion",4,
"Medium conversion",5,
"Low conversion",6,
"High Engagement",7,
"Medium Engagement",8,
"Low Engagement",9
)
Regards
Miguel Félix
Proud to be a Super User!
Check out my blog: Power BI em PortuguêsHi @utkarshshastri ,
If the value you are using for the condittional formatting is a measure you must use the measure itself and not the SELECTEDVALUE try the following:
New color code =
SWITCH([Account stage],
"High Awareness",1,
"Medium Awareness",2,
"Low Awareness",3,
"High conversion",4,
"Medium conversion",5,
"Low conversion",6,
"High Engagement",7,
"Medium Engagement",8,
"Low Engagement",9
)
Regards
Miguel Félix
Proud to be a Super User!
Check out my blog: Power BI em Português