changing text to numerals

G

Guest

Is there a quick and easy way of changing numbers enter as text (i.e. one,
two, three) to numerals. I have a whole column of numbers entered in text
form that I need to convert!

Thanks
 
G

Guest

What is the "range" of the the text i.e. is it simply "one"," two ","three"
or [for example) "one hundred and tweny four"?
 
G

Guest

Use VLOOKUP:

for example, in cols C & D enter:

one 1
two 2
three 3
four 4
five 5
six 6
seven 7
eight 8
nine 9
ten 10

and in B1 enter:
four
then the following formula:
=VLOOKUP(B1,C:D,2,0) will return the number 4
 
G

Guest

Thank you. That worked



Gary''s Student said:
Use VLOOKUP:

for example, in cols C & D enter:

one 1
two 2
three 3
four 4
five 5
six 6
seven 7
eight 8
nine 9
ten 10

and in B1 enter:
four
then the following formula:
=VLOOKUP(B1,C:D,2,0) will return the number 4
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top