Three conditions
=FILTER(A2:D,B2:B="West",C2:C>=1000,D2:D="Won")Adds a status test.
Return rows that meet two or more conditions at the same time.
Return rows that meet two or more conditions at the same time. Use =FILTER(A2:C,B2:B="West",C2:C>=1000), then replace the sample ranges with the columns in your sheet.
Each FILTER condition is an AND test when supplied as a separate argument.
| A | B | C | |
|---|---|---|---|
| 1 | Rep | Region | Sales |
| 2 | |||
| 3 | |||
| 4 | |||
| 5 |
=FILTER(A2:D,B2:B="West",C2:C>=1000,D2:D="Won")Adds a status test.
=FILTER(A2:C,B2:B=F2,C2:C>=G2)Reads both criteria from cells.
=IFERROR(FILTER(A2:C,B2:B=F2,C2:C>=G2),"No matches")Returns readable text when nothing qualifies.
Use the same starting and ending rows for the data and every condition range.
Convert the sales column to numbers before applying >=.
Use the same starting and ending rows for the data and every condition range.
Convert the sales column to numbers before applying >=.
Send this recipe to the SheetSteps assistant and describe how your columns are arranged.