I am quite new to Excel and am looking for the most straightforward way to solve only including alphanumeric characters in a column of strings. If there are non-alphanumerics, they should simply be deleted in the string and leave only the alphanumerics.
I'd like to avoid using nested SUBSTITUTES functions because it looks clunky, but more importantly, I can't know/predict all the special symbols that could come up. I can't do SUBSTITUTE('hello-world', "-", "") -> "helloworld" because I don't want to exactly get rid of special characters, more-so only keep alphanumeric characters. So it should more so be something like - KEEP('hello-world', [A-Z,a-z,0-9]) (but I can't find something like that.
Is there a more straightforward way to do this without Visual Basic or Macros? I'd have to learn how to do those and it seems time-consuming. If not, I'd love a VBA or Macros idea.
Thanks so much!