Hi,
I have my following gallery:

I'm having issues with my combobox filter filtering a boolean column. I created a collection to have text values in my filter:
ClearCollect(ctlValueTest;Table({Choice:"Yes"; Value:true}; {Choice:"No"; Value:false}))
Here is the formula in the Items of my gallery:
Filter(cltTest;
IsEmpty(cbxTxtTest.SelectedItems) || IsBlank(cbxTxtTest.SelectedItems) || txt in cbxTxtTest.SelectedItems;
IsEmpty(cbxValueTest.SelectedItems) || IsBlank(cbxValueTest.SelectedItems) || txt in cbxValueTest.Selected.Choice
)
But when I choose a value in my cbxValueTest filter (yes or no) there is nothing displayed.
Where is my error please?
THANKS