Excel/VBA gurus:
I have a very long column of strings that looks like this:
. A
1 one num 1.23 JUL27/09
2 three num 2.34 NOV8/10
3 five num 2.59 DEC10/10
4 seven num 3.90 JAN1/11
I want to alter the first word (one, three, five..etc), based on the following reference array (which is actually much longer):
. A B
1 one fish
2 three dog
3 five cat
4 seven horse
I also want to delete the middle word "num", and alter the date so it shows up as mm/dd/yy.
Could I do this in VBA/excel somehow?
I have a very long column of strings that looks like this:
. A
1 one num 1.23 JUL27/09
2 three num 2.34 NOV8/10
3 five num 2.59 DEC10/10
4 seven num 3.90 JAN1/11
I want to alter the first word (one, three, five..etc), based on the following reference array (which is actually much longer):
. A B
1 one fish
2 three dog
3 five cat
4 seven horse
I also want to delete the middle word "num", and alter the date so it shows up as mm/dd/yy.
Could I do this in VBA/excel somehow?