match formula

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I can't remember the specific formula to use. I am trying to match initials
and turn them into full words that they stand for. For example, on a mailing,
we have state abbreviations, there are over 500 rows of them. I would like to
turn the initials into the full state name. TX to Texas, etc. I have all 50
states initials in column A. Column B has all their corresponding full names.
In another spreadsheet is the initials in column G. Please help me with the
formula so that column H will have the matching full name of the state.
 
You may use VLOOKUP formula.


=vlookup(g1,sheet1!A1:B50,2,false)

This will lookup the value in cell g1 in column A on sheet1 and return
the value in column 2 of the range (which in this case is column B on
sheet1)



Best regards




Deepak Agarwal
 
Back
Top