I have a list of numbers (in Sheet3 ColB) which I want to use to return the ID number on another sheet (Sheet 2 ColA) where the number in Sheet3 is equal to a number in column b or column c on sheet 2. However I can't seem to get it to run correctly.
at the moment my code is as follows
I think the problem might be that there is more than 1 occurence of the number, (although the id would always be the same), if that's the case then what do I need to add so that it only looks up the first match?
at the moment my code is as follows
Code:
=INDEX(Sheet2!$A$2:$D$1458,MATCH(B2,Sheet2!$B$2:$B$1458,0))
I think the problem might be that there is more than 1 occurence of the number, (although the id would always be the same), if that's the case then what do I need to add so that it only looks up the first match?