shahdelsol
Active Member
- Joined
- Jul 21, 2009
- Messages
- 276
- Office Version
- 365
- Platform
- Windows
I am trying use Index combined with 2 Match but I am stuck with my first Match. In the formula below, J3 equals a 4 digit number that needs to be found in A7:A17. The problem is in this array each cell has various 4 digit numbers separated by comma.
For example if J3 = 8580
A7 could be: New items (8230,8620, 8390)
A8 could be: Apple (8090)
A9 could be: Orange (8520, 8620, 8450,8580)
And so on
In this case my match is in A9. Is Match function capable of finding such a match? Or my first Match needs to be replaced by a different function?
For example if J3 = 8580
A7 could be: New items (8230,8620, 8390)
A8 could be: Apple (8090)
A9 could be: Orange (8520, 8620, 8450,8580)
And so on
In this case my match is in A9. Is Match function capable of finding such a match? Or my first Match needs to be replaced by a different function?
Code:
=INDEX(G7:U17,MATCH(J3, A7:A17,0),MATCH(I11,G6:U6,0))