Forum Discussion
akhassim
2 years agoNew Member
undefined
I have a column called current phase. Values are true and false. I need true to be a tick and false to be blank. Please assist.
- 2 years ago
akhassim Try this dax measure:
Measure 10 = IF(`VALUES('tableName'[Column]) = "True"`, UNICHAR(10003), BLANK()).The expression might need changing but otherwise it should work.Thank You - 2 years ago
Hi akhassim
There are many options to achieve it.
My 2 suggestions:
First with dax
You can change the data type of this column to text.
And create a measure :
Phase =if(max('Table'[current phase])="True","ā ","")Second with conditional formatting
If this post helps, then please consider Accepting it as the solution to help the other members find it more quickly.
ChiragGarg2512
2 years agoSolution Sage
akhassim Try this dax measure:
Measure 10 = IF(`VALUES('tableName'[Column]) = "True"`, UNICHAR(10003), BLANK()).
The expression might need changing but otherwise it should work.
Thank You