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
17 - Castor
17 - Castor

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

 

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

Labels