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