The formula will take the word in A3 and convert it to the appropriate
number as specified in the table (and return this value to the cell
where the formula is located). If you have other words scattered about
the sheet then you would need a similar formula in another cell, but
you would need to change the two references to A3 to suit your other
cells. If you copy the formula, then you would need to paste it into a
cell which has the same positional relationship as you have at the
moment (i.e. if this formula is in A5 and you had a word in B6, you
would need to copy the formula into B8). If you want to copy into
different columns, however, you will need to change the formula to:
=IF(A3="","",VLOOKUP(A3,$M$1:$N$5,2,0))
or
=IF(A3="","",VLOOKUP(A3,$M$1:$N$35,2,0))
so that you are always referencing the same table.
Hope this helps.
Pete
Hope this helps.
Pete