Forum Discussion
akhassim
2 years agoNew Member
undefined
Hi
I have a table visual with a column that has values "True" and "False". I need "False" to be blank and "True" to be a tick.
Please assist
Hello akhassim ,
Try the following
Measure = if( SELECTEDVALUE('Table'[Column2]) = TRUE() , UNICHAR(128504),BLANK())If I answered your question, please mark my post as solution, Appreciate your Kudos 👍
Follow me on Linkedin
Vote for my Community Mobile App Idea 💡
2 Replies
- IdrissshatilaSuper User
Hello akhassim ,
Try the following
Measure = if( SELECTEDVALUE('Table'[Column2]) = TRUE() , UNICHAR(128504),BLANK())If I answered your question, please mark my post as solution, Appreciate your Kudos 👍
Follow me on Linkedin
Vote for my Community Mobile App Idea 💡- akhassimNew Member
Thank you so much