text reference to number value?

  • Thread starter Thread starter Scott
  • Start date Start date
S

Scott

I have a spreadsheet with a Product code number that I
want to revise to a Description (reference on another
sheet). Is there an easy way to lookup and reference?
 
Assuming the description is to the right of the product
code number on the other sheet, try:

=VLOOKUP(A1,OtherSheet!A:Z,2,0)

where:

A1 = location of product code number to look up

OtherSheet!A:Z = list of product codes, descriptions, and
other info

2 = the 2nd column in OtherSheet!A:Z. In this case, it's
col. B where the description is located (assumed)

0 = find an exact match.

HTH
Jason
Atlanta, GA
 

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

Back
Top