How do I link a certain number to a certain word?

C

chet

How do I link a number to a word? ie If I type "Pleat" in cell A1 it will
show "105" in cell B1? Is this possible?
 
D

Don Guillett

If it is really that simple then in cell b1
=if(a1="pleat",105,"")
or if you have a lot of this take a look in HELP index for VLOOKUP
 
Top