Although I believe that @MakeCents comment / suggestion on how to do this is how I will go, as it is the easiest, you could do it differently (MANY, more processor intensive, though) using Index() and Match() and array formulas.
For example, suppose your 3 columns of data that you want to map are AC columns, and you want to return the corresponding value from column D to Sheet1
Now the three values โโyou want to match are in cells A1, B1 and C1 Sheet2, you can use the following formula:
=INDEX(Sheet1!D:D,MATCH(1,(Sheet1!A:A=A1)*(Sheet1!B:B=B1)*(Sheet1!C:C=C1),0))
AND ENTER AS MACHINE FORMULAS by pressing Ctrl + Shift + Enter
Hope this helps!
source share