Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
akhassim
New 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 ACCEPTED SOLUTIONS
ChiragGarg2512
Solution Sage
Solution 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

 

View solution in original post

Ritaf1983
Super User
Super 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","","")
Ritaf1983_0-1696574595905.png

Second with conditional formatting

Ritaf1983_1-1696574810630.png

Link to a sample file 

 

If this post helps, then please consider Accepting it as the solution to help the other members find it more quickly.

 
Regards,
Rita Fainshtein | Microsoft MVP
https://www.linkedin.com/in/rita-fainshtein/
Blog : https://www.madeiradata.com/profile/ritaf/profile

View solution in original post

2 REPLIES 2
Ritaf1983
Super User
Super 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","","")
Ritaf1983_0-1696574595905.png

Second with conditional formatting

Ritaf1983_1-1696574810630.png

Link to a sample file 

 

If this post helps, then please consider Accepting it as the solution to help the other members find it more quickly.

 
Regards,
Rita Fainshtein | Microsoft MVP
https://www.linkedin.com/in/rita-fainshtein/
Blog : https://www.madeiradata.com/profile/ritaf/profile
ChiragGarg2512
Solution Sage
Solution 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

 

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.