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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
johnwedeles
Helper III
Helper III

Replacing text with special character - check marks

Hello:

 

I have created a table visual. The underlying Excel table contains check marks, which were not retained when I imported the table. Now that I've imported the table, I'm trying to change the existing text in several columns (specifically, a "Y") to a check mark. 

 

Based on preliminary research, I may be able to use the UNICHAR function to replace the "Y" with a check mark, but haven't gotten it to work. Would appreciate any guidance.

 

Thank you!

2 ACCEPTED SOLUTIONS
Greg_Deckler
Super User
Super User

Or:

Column = IF([Column1]="Y",UNICHAR(10003),[Column1])

Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

@johnwedeles - Yes, you could use a nested IF statement or use a SWITCH(TRUE()...) statement.


Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

7 REPLIES 7
Greg_Deckler
Super User
Super User

Or:

Column = IF([Column1]="Y",UNICHAR(10003),[Column1])

Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

That worked! Thank you very much! @Greg_Deckler 

Glad to hear it!

Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

Hello @Greg_Deckler - is it possible to add an additional (or nested) filter to this formula? For example, I want to say:

 

If column 1 contains "Y", then UNICHAR 10003

 

and (this would be the additional filter)

 

if column 1 contains "-", then UNICHAR 8211

 

Thank you!

@johnwedeles - Yes, you could use a nested IF statement or use a SWITCH(TRUE()...) statement.


Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

Thank you, @Greg_Deckler !

Greg_Deckler
Super User
Super User

Should be:

Column = UNICHAR(10003)

Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel

Power BI Monthly Update - May 2024

Check out the May 2024 Power BI update to learn about new features.