Home > other >  Returning a value that matches 2 conditions in Google Sheets
Returning a value that matches 2 conditions in Google Sheets

Time:11-16

I am trying to write a formula in Google sheets that returns a value if 2 conditions, 1 horizontal and one vertical are met. I tried index match but it didn't work with 2 conditions

Here is a screen shot with an example:

enter image description here

CodePudding user response:

An alternative approach

=filter(filter(F9:K14, F9:K9=F2), E9:E14=F3)
  • Related