Search code examples
excelxmlexcel-formulaworksheet-function

If four number cells match, return value from 5th cell


I'm looking for a formula function that will return the value of E in column F if A matches with B, and C matches with D.

Excel worksheet -> https://i.sstatic.net/Lmcry.png

enter image description here


Solution

  • Please try:

    =IF(AND(A2=B2,C2=D2),E2,"")