Home > Blockchain >  I am not sure what is wrong with my VLOOKUP equation
I am not sure what is wrong with my VLOOKUP equation

Time:01-10

I'm pretty sure that my equation is correct and if not, I can't work out what I'm doing wrong.

Image linking to my sheets issue

CodePudding user response:

I would advise you to learn how to use Index and Match formulas instead. For this example, it would be =INDEX(A4:B8,MATCH(A5,A4:A8,0),2). Remember to lock the cells if you wish to drag it.

CodePudding user response:

use 4th parameter:

=VLOOKUP(A5, A4:B8, 2, 0)
  •  Tags:  
  • Related