What columns will the names on the worksheets be to check against? Can you upload a sample workbook?
Maybe something like this? This formula assumes that the names on the worksheets are in column A, and that when you load the names they will start from cell A1. And the sheets are names Sheet1, Sheet2, etc. This show you up to three sheets, but you can add more iferror and match functions until you get however many sheets you have.
Formula:
=IF(ISNUMBER(IFERROR(MATCH(A1,'Sheet1'!A:A,0),IFERROR(MATCH(A1,'Sheet2'!A:A,0),MATCH(A1,'Sheet3'!A:A,0)))),"YES","")
Bookmarks