- I have a 1500 row excel file.
- In the first column I have characters mixed up with numbers (every row is different).
- I would like to leave only the numbers and delete the alpha characters.
For example in A1
I have
f90f5j49,35.48
and after I delete the alpha characters it should be
905493548
What is the best way to do this?
I did find this youtube solution
Thanks!
Your method is the right approach.
The quickest way to implement this is to use
Using code based on my Article Using Variant Arrays in Excel VBA for Large Scale Data Manipulation