Hi Everyone,
I would like to ask for help filtering gallery based on 1 choice column and 1 multiple choice column. Please refer to screenshot below.

I want to filter List based on these choice dropdown columns.
If I use method below. It is only 1 filter condition.
Filter(
'List Name',
Concat(ComboBox2.SelectedItems,Value&",") in
Concat('Days of the Week',Value&",")
);
ForAll(
ComboBox2.SelectedItems,
Filter(
'List Name',
Value in 'Days of the Week'.Value
)
)
Kindly help the best way to filter gallery. Thanks!