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

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.

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
September Power BI Update Carousel

Power BI Monthly Update - September 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors