A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
You can use the match function to verify the date in question matches one of the desired dates. The other tow criteria a simple equality checks. You combine the three criteria using multiplication.
For example, if the desired dates are in A1:A3, the first specified value is in B1, the second specified value is in C1, and the array to be filtered is in F1:H6, the the formula you want is
=FILTER(F1:H6,(IFERROR(MATCH(F1:F6,A$1:A$3,0),0))*(--(G1:G6=B$1))*(--(H1:H6=C$1)))
MATCH verifies the date is one of the acceptable ones.
IFERROR replaces the non-match value with 0
The two equality expressions convert TRUE/FALSE to 1/0.
The product will be nonzero only if all three criteria are satisfied. Those are the rows that FILTER will select.