0

I'm trying to get the value on column "I" if value in A= L2 AND value in C = M2. How would I go about that?

enter image description here

enter image description here

Miguel Angel Quintana
  • 1,371
  • 2
  • 9
  • 12
  • 1
    Does this answer your question? [VLOOKUP with two criteria?](https://stackoverflow.com/questions/10583461/vlookup-with-two-criteria) – Jan Willem Dec 13 '21 at 07:42

1 Answers1

0

Try-

=INDEX($I$2:$I$20,MATCH(1,($A$2:$A$20=L2)*($C$2:$C$20=M2),0))

With Microsoft 365 you can use XLOOKUP()

=XLOOKUP(1,($A$2:$A$20=L2)*($C$2:$C$20=M2),$I$2:$I$20,"")
Harun24hr
  • 30,391
  • 4
  • 21
  • 36