This is my simple table
A B C
tasmania hobart 21
queensland brisbane 22
new south wales sydney 23
northern territory darwin 24
south australia adelaide 25
western australia perth 26
tasmania hobart 17
queensland brisbane 18
new south wales sydney 19
northern territory darwin 11
south australia adelaide 12
western australia perth 13
index match array formula:
=INDEX(A2:C9,MATCH(1,(H4=$A:$A)*(I4=$B:$B),0),3)
Basically A and B are my lookup criteria while C is the value I want to get. I want C to be the minimum value among the matched C value.
Ex. If I have tasmania and hobart as my criteria, I would want to get 17 because it is the minimum value and not 21.
I tried nesting MIN
inside the index match array (H4=$A:$A)*(I4=$B:$B)*(MIN($C:$C))
but it only results in errors