Forum Discussion
Index MATCH formula returns the next value in an array
Hello
Would appreciate if I can get some help on this problem.
If you please look at the attached excel file, I am trying to lookup value from one data set, into another. However, the index match formula is only giving the lowest value 10 (or even if I don't write 0, the index match formula will give me the highest value i.e. 30). Is there a way to write a formula so that if one value is selected from the array, the index match formula does not select it again? e.g. if 10 is selected then the next value that the index match formula picks up is 30 (and not 10)
Would appreciate any help!
5 Replies
- Subodh_Tiwari_sktneerSilver Contributor
You may try the following Array Formula which requires confirmation with Ctrl+Shift+Enter instead of Enter alone.
In C3
=IFERROR(INDEX($G$3:$G$5,SMALL(IF($E$3:$E$5=A3,IF($F$3:$F$5=B3,ROW($E$3:$E$5)-ROW($E$3)+1)),ROWS(C$3:C3))),"Record not in File B")
Confirm it with Ctrl+Shift+Enter and then copy it down.
- Umair_YousufCopper Contributor
- Subodh_Tiwari_sktneerSilver Contributor
You're welcome! Glad it worked as desired.
Please take a minute to accept the solution posted as an Answer, that would mark your question as Solved.