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
- 2 years ago
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 π‘
Idrissshatila
2 years agoSuper 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 π‘
akhassim
2 years agoNew Member
Thank you so much