Use REGEX. This will remove all “non word” characters
REGEX_REPLACE(Name, "e^ :word:]]", "")
This will remove all punctuation
REGEX_REPLACE(Name, "e,:punct:]]", "")
Use REGEX. This will remove all “non word” characters
REGEX_REPLACE(Name, "e^ :word:]]", "")
This will remove all punctuation
REGEX_REPLACE(Name, "e,:punct:]]", "")
Thank you!! You’re amazing Kamile!