Using corresponding value of a Cell in a formula

  • Thread starter Thread starter FredK
  • Start date Start date
F

FredK

How can I use a value of a cell in a formula?

For example:

A B C
test.com 2
test1.com 1
test3.com 3

in cell C1, if lookup the text result of a cell in Column A which correspnds
to value of Column B.
 
Try this, with the value you're looking to reference entered in D1:

=Index(A1:A3,Match(D1,B1:B3,0))
 
Fred
I believe you need to look into the VLOOKUP formula.
But, you don't provide enough information for me to be completely sure
about that.
Ken
 
Back
Top