I tried to use Index/Match function to lookup values from certain region, because I was stuck since my column index may have two same value, for example you have a region looks like below
For example I want to find the value for 1/24/2018 for Test 1, but I use the formula, it gives me the first value for Test 1 which is 0.31, but what I want to is 0.83
=INDEX(G5:I11,MATCH(F5,F5:F11,0),MATCH("Test 1",G4:I4,0))
I did some search, I think I should use large, so which means give the location of column for the last match value you find in the row, not the first, but I am not sure how to implement Large function to my formula
Which means give me the column number for last match you find in second match, you know when you put MATCH("Test 1",G4:I4,0)), it returns the first matched value, but I want to 2nd or 3rd (which means last)
Test 1 Many Test 1
1 0.31 0.21 0.83
2 1 2 3