Cidona,
Attached is a modified version of your sample workbook. In 'JobLkUp' cell A4 is this array formula. An array formula needs to be entered with Ctrl+Shift+Enter and not just Enter. This formula is then copied down to cell A13 (so it can return up to 10 results. Copy down farther if needed).
=IF(COUNTA(A$3:A3)>COUNTIF(JobList!$B$2:$B$9,$C$1),"",INDEX(JobList!A$1:A$9,SMALL(IF(JobList!$B$2:$B$9=$C$1,ROW(JobList!$B$2:$B$9),9^9),COUNTA(A$3:A3))))
Then, in cell B4 is this formula. This is just a standard VLookup() formula and is not an array formula. It is copied over and down for cells B4:E13
=IF($A4="","",VLOOKUP($A4,JobList!$A$2:$F$9,MATCH(B$3,JobList!$A$1:$F$1,0),FALSE))
Bookmarks