There are two issues with the file you attached in the post#13.
1). The formula I suggested is an array formula so you need to confirm it with Ctrl+Shift+Enter not just Enter. (i.e. after pasting the formula in the cell, press F2, hold down the Ctrl+Shift and then press Enter.). When an array formula is entered correctly, you will notice in the formula bar that the formula gets surrounded by the Curly Brackets {}. And if you don't see the curly brackets in the formula bar, repeat the process to enter it correctly by pressing F2 (Function Key) and holding down the Ctrl+Shif together and pressing Enter then.
2). The numbers in column A are numbers stored as Text (not real numbers), while the numbers in col. B are real numbers. You need to take care of this. Here is the modified formula. Notice in the formula I have used $A$2:$A$30*1 rather than $A$2:$A$30 only, because multiplying $A$2:$A$30 by 1 makes $A$2:$A$30 the real numbers.
=IFERROR(IFERROR(INDEX($A$2:$A$30,SMALL(IF(ISNA(MATCH($A$2:$A$30*1,$B$2:$B$30,0)),ROW($A$2:$A$30)-ROW($A$2)+1),ROWS(E$2:E2))),INDEX($B$2:$B$30,SMALL(IF(ISNA(MATCH($B$2:$B$30,$A$2:$A$30*1,0)),ROW($B$2:$B$30)-ROW($B$2)+1),ROWS(E$2:E2)-SUMPRODUCT(--(ISNA(MATCH($A$2:$A$30*1,$B$2:$B$30,0))))))),"")
Is this what you are trying to achieve?
Bookmarks