Hi ...
Below is my measure :
Weighted Achievement (%) =
Solved! Go to Solution.
Hi @NickzNickz ,
You could create an additional measure which looks like this:
ColourCodeMeasure = If ( [Measure] = "hello", "red", BLANK() )
Here the result for my mockup data:
Your measure would be something like this. Note you could even use HEX number instead of "red":
ColourCodeMeasure = If ( [Weighted Achievement (%)] = "Not Started", "red", BLANK() )
Then click on the arrow facing down in the visualization pane > Conditional Formatting > Font Color
Choose the following settings:
Let me know if this helps 🙂
/Tom
https://www.tackytech.blog/
https://www.instagram.com/tackytechtom/
Proud to be a Super User!
Hi @NickzNickz ,
You could create an additional measure which looks like this:
ColourCodeMeasure = If ( [Measure] = "hello", "red", BLANK() )
Here the result for my mockup data:
Your measure would be something like this. Note you could even use HEX number instead of "red":
ColourCodeMeasure = If ( [Weighted Achievement (%)] = "Not Started", "red", BLANK() )
Then click on the arrow facing down in the visualization pane > Conditional Formatting > Font Color
Choose the following settings:
Let me know if this helps 🙂
/Tom
https://www.tackytech.blog/
https://www.instagram.com/tackytechtom/
Proud to be a Super User!
Hi @tackytechtom ,
Really appreciate it... The result is as expected.... Thanks a lot ...
Regards,
NickzNickz