Forum Discussion
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.
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 YouHi 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.
2 Replies
- ChiragGarg2512Solution 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 - Ritaf1983Super User
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.