Assuming A1:A2000 is the master data, and B1:B400 is the sorting data
C1 = MATCH(B1,A$1:A$2000,0)
C2 = MATCH(B2,A$1:A$2000,0)
...C400
D1 = INDIRECT("B"&MATCH(ROW(),C$1:C$400,0))
D2 = INDIRECT("B"&MATCH(ROW(),C$1:C$400,0))
...D400
If you do not want to see those #N/A, use an IF statement and ISERROR, make that "".
Hope this helps
Originally Posted by sammc2
Bookmarks