I'm creating a spreadsheet that need to take values from Column A lookup the closest value in Column AA and place the corresponding value in column AB into column B. All the data begins on row 15.
When I put =VLOOKUP(A15,$AA$15:$AB$54,2,TRUE) into B15 it returns -5.5 but A15 = 869.18 so it should return -200.43.
Code:
AA |AB
869.18|-200.43
670.37|-88.8
353.19|-14.7
0 |-5.5
When I put =VLOOKUP(A15,$AA$15:$AB$54,2,TRUE) into B15 it returns -5.5 but A15 = 869.18 so it should return -200.43.