Let’s talk Alteryx Copilot. Join the live AMA event to connect with the Alteryx team, ask questions, and hear how others are exploring what Copilot can do. Have Copilot questions? Ask 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