=IFERROR(IFERROR(INDEX($A$2:$A$6, MATCH(0, COUNTIF(E$1:$E1, $A$2:$A$6), 0)), INDEX($B$2:$B$5, MATCH(0, COUNTIF($E$1:E1, $B$2:$B$5), 0))), "")
Hi:
Use the following array formula:-
Code:=IFERROR(IFERROR(INDEX($A$2:$A$6, MATCH(0, COUNTIF(E$1:$E1, $A$2:$A$6), 0)), INDEX($B$2:$B$5, MATCH(0, COUNTIF($E$1:E1, $B$2:$B$5), 0))), "")
Execute by pressing control+shift+enter keys.
Thanks
Hi,
Adding &"" inside your formula as per highlighted :
=IFERROR(IFERROR(INDEX($A$2:$A$9,MATCH(0,COUNTIF($D$1:D1,$A$2:$A$9&""),0)),INDEX($B$2:$B$9, MATCH(0,COUNTIF($D$1:D1,$B$2:$B$9&""),0))),"")
This is an array formula confirm enter with Ctrl+Shift+Enter
Regards
Bosco[/quote
IHi,
Adding &"" inside your formula as per highlighted :
=IFERROR(IFERROR(INDEX($A$2:$A$9,MATCH(0,COUNTIF($D$1:D1,$A$2:$A$9&""),0)),INDEX($B$2:$B$9, MATCH(0,COUNTIF($D$1:D1,$B$2:$B$9&""),0))),"")
This is an array formula confirm enter with Ctrl+Shift+Enter
Regards
Bosco
Your formula works well, but unfortunately it could not run with huge data like thousand rows. Do you have any way to help on that?It work perfectly. Thanks alot