Forum Discussion
Score Card using symbols
- 2 years ago
I think you have % part of the text/value. Try this.
SelectItem = 12 && (VALUE( SUBSTITUTE([Classic prioritizes overall safety],"%","") ) / 100) >= 0.90
Tested:Column2 is calculated column and its syntax:
Measure syntax:
I was doing fast copy paste and has to do multiple edits in this reply. 🙂
Can you try like this and see if it works?
SelectItem = 12 && [Classic prioritizes overall safety] >= 0.90
as
SelectItem = 12 && Value([Classic prioritizes overall safety]) >= 0.90
- WNelson2 years agoFrequent Visitor
I have tried this
Icon =VAR SelectItem = SELECTEDVALUE('KPI Score Card'[Row Index])ReturnSWITCH(TRUE(),SelectItem IN {1,9,13,17}, "",SelectItem = 2 && [Overall Sastifaction 2024] <= 4.5,"â–²",SelectItem = 2 && [Overall Sastifaction 2024] > 4.5,"â–¼",SelectItem = 5 && [2024 Overall Employee Sat] >= 4.5,"â–²",SelectItem = 5 && [2024 Overall Employee Sat] >= 4.5,"â–¼",SelectItem = 6 && [Client agree needs met] < 90,"â–¼",SelectItem = 6 && [Client agree needs met] >= 90,"â–²",SelectItem = 5 && [Overall Sastifaction with current position] < 4.5,"â–¼",SelectItem = 7 && [CP Communication with Classic] >= 4.5,"â–²",SelectItem = 7 && [CP Communication with Classic] < 4.5,"â–¼",SelectItem = 10 && [Attention to safety] >= 4.5,"â–²",SelectItem = 10 && [Attention to safety] < 4.5,"â–¼",SelectItem = 12 && Value([Classic prioritizes overall safety]) >= 0.90,"â–¼",SelectItem = 22 && [2024Touchpoints] <= 152,"â–¼",SelectItem = 22 && [2024Touchpoints] > 152,"â–²",SelectItem = 19 && [Total Employees 2024] <= 39,"â–¼",SelectItem = 19 && [Total Employees 2024] <= 39,"â–²",SelectItem = 19 && [2024Touchpoints] > 152,"â–²"," ")The error I get is : cannot convert value 98% type Text to type Number- sevenhills2 years agoSuper User
I think you have % part of the text/value. Try this.
SelectItem = 12 && (VALUE( SUBSTITUTE([Classic prioritizes overall safety],"%","") ) / 100) >= 0.90
Tested:Column2 is calculated column and its syntax:
Measure syntax:
I was doing fast copy paste and has to do multiple edits in this reply. 🙂
- WNelson2 years agoFrequent Visitor
You are my HERO!!!!!!! thank you so so much. This has been making me crazy. I appreciate you willingness to help.
Thank you,
Wendy