We are celebrating the 10-year anniversary of the Alteryx Community! Learn more and join in on the fun here.
Start Free Trial

Alteryx Designer Desktop Discussions

Find answers, ask questions, and share expertise about Alteryx Designer Desktop and Intelligence Suite.
SOLVED

How to remove unwanted characters from a column

carterfleming
8 - Asteroid

I want to selectively remove certain characters from a column. I looked at using the Data Cleansing tool option to remove punctuation but I don't want to remove all punctuation from the column, just one specific character. I want to remove * from the column but the column also contains . that I do not want to remove. Any help? Thanks!

1 REPLY 1
alexnajm
18 - Pollux
18 - Pollux

You can use ReplaceChar to replace any individual character with the character of your choice. in this case, it sounds like:

 

ReplaceChar([Column], "*" , "")

Labels
Top Solution Authors