Forum Discussion
Sabeel
Jan 07, 2020Copper Contributor
Please help to find out unmatched data formula
Twifoo
Jan 07, 2020Silver Contributor
Hi Sabeel,
In the attached file, the formula in non-array M2 is:
=IFERROR(INDEX(A$2:A$9,AGGREGATE(15,6,
ROW(A$2:A$9)/(COUNTIF(E$2:E$3,A$2:A$9)=0)-1,
ROW()-1)),"")
The foregoing formula returns the unmatched chassis numbers in Column M, as shown in the snapshot below:
Thereafter, this simple VLOOKUP formula returns the values in Columns N and O:
=IFNA(VLOOKUP($M2,
$A2:$C9,
MATCH(N$1,$A$1:$C$1,0),0),"")
Cheers,
Twifoo