So in the filtering options for “The Grid” you can set the “Filter Combination Logic” as “And” or “Or”.
However we are trying to filter curriculum library for a college client by subject and year.
We would like to be able to filter by multiple subjects AND years, but a curriculum cannot be in two years at the same time nor can a curriculum be in multiple categories.
instead of:
(subject1) || (subject2) || (year1) || (year2)
or
(subject1) && (subject2) && (year1) && (year2)
We would like it to function as such:
((subject1) || (subject2)) && ((year1) || (year2))
Is this possible?
