I have a cell which contains a mix of letters and numbers. I want to remove all the none numeric characters to give me the numbers.
eg
a 12 v would give 12
3412 fgd would give 3412
1234 would give 1234
sdf would give blank
I’ve thought about using substitution, but that would require lots of nested substitution functions to remove “a” then “b” then “c” etc
Any thoughts of how I can do this WITHOUT using VB?
John