You wouldn't normally use AND as that can't return an array
You could get the minimum value in column A when column B is "x" and column C is > 100 like this with multiple IFs
=MIN(IF(B2:B100="x",IF(C2:C100>100,A2:A100)))
......or use * to replicate AND like
=MIN(IF((B2:B100="x")*(C2:C100>100),A2:A100))
both formulas need to confirmed with CTRL+SHIFT+ENTER
the first one above is probably marginally more efficient. You can add extra conditions as required
Bookmarks