Hi there,
I'm following the videos published by @RezaDorrani about filtering items in a gallery.
I'm having some trouble with filtering items from a checkbox.
As you can see I successfull filter my items with a Combobox, selecting my choices from a sharepoint list column values.


But if I check the checkBox values, the Combobox value is correctly updated but the filter doesn't works.

Here's the Items property code of my gallery:
SortByColumns(
Filter(
'TEST-GESTIONE CAMPIONI';
StartsWith(
Petitioner;
PetitionerFilter.Text
) && ( 'Analysis status' in ComboBox1.SelectedItems || ComboBox1.Selected.Value=Blank())
);
"field_7";
Descending
)
And the properties of my ComboBox:

Do you have some hints?
Thanks.