Laura
Laura

Reputation: 483

HLOOKUP in Excel Formula

This is my excel file:

enter image description here

I need a formula that would starts in cell J2 in this excel spreadsheet that does the following: It would look for the letter C (column) in the filled matrix, and then gives me the value. For example the first value in J2 would be 43,24 and then I would drag the formula till the end (14th row, with the filled matrix FIXED $$).

The Final output should be like this:

enter image description here

My problem is that I cant fix the filled matrix ($$) in my HLOOKUP/VLOOKUP.

Any help guys?

Thanks

Upvotes: 2

Views: 141

Answers (1)

BigBen
BigBen

Reputation: 49998

You need one INDEX with a MATCH for the row and a MATCH for the column (if you're looking to change up the C and F), something like this:

=INDEX($B$2:$G$14,MATCH($I2,$A$2:$A$14,0),MATCH(J$1,$B$1:$G$1,0))

enter image description here

EDIT: If you don't need to do a match on the date, then simply remove that part of the formula:

=INDEX($B$2:$G$14,,MATCH(J$1,$B$1:$G$1,0))

Or if you want to use HLOOKUP, then like this:

=HLOOKUP(J$1,$B$1:$G$14,ROW(),TRUE)

enter image description here

Upvotes: 2

Related Questions