shahdelsol
Active Member
- Joined
- Jul 21, 2009
- Messages
- 276
- Office Version
- 365
- Platform
- Windows
I am trying to use index/match when 2 matches found in columns, perfrom row match. I have tried these 2 functions but they are not working.
For your infromation , A2 and A:A column content is date and same date could be found in several cells.
Can anyone help what I am doing wrong here?
For your infromation , A2 and A:A column content is date and same date could be found in several cells.
Code:
=INDEX(LIST!I:M,MATCH(1,($A$2=LIST!A:A)*(D3=LIST!B:B)*(L2=LIST!I2:M2),0))
Code:
INDEX(LIST!I:M,MATCH($A$2=LIST!A:A,0),MATCH(D3,LIST!B:B,0),MATCH($L$2,LIST!$I$2:$M$2,0))
Can anyone help what I am doing wrong here?