I wanted to use the following filter statement which unfortunately doesn't work:
FILTER "Table"."type" = (<%=type1%>) AND "Table"."type" = (<%=type2%>);
Strangely enough, the filter does work if I replace the 'AND' with 'OR' like the following:
FILTER "Table"."type" = (<%=type1%>) OR "Table"."type" = (<%=type2%>);.
However, this would have the same result as an 'IN' statement like the following:
FILTER "Table"."type" IN (<%=type1%>, <%=type2%>);
But I need an 'AND' or an 'IN' where all selected 'types' are true and not only one from the 'IN' list.
Can someone please help me with that issue?