Hello,
I would like to filter a collection with multiple combobox:
ClearCollect(
ColFitlerAlerts,
Filter(VarAlert,
Or(!IsEmpty(Filter(CBMarket.SelectedItems, Value = MARKET_ID)), IsEmpty(CBMarket.SelectedItems)),
Or(!IsEmpty(Filter(CBStatus.SelectedItems, INT_STATUS_ID = INT_STATUS_ID ) ), IsEmpty(CBStatus.SelectedItems)
)))
The first filter with the Market is working well.
For the second, I can't figure it out.
The items of my Combobox is


And in my collection I have a column INT_STATUS_ID

Can you please help me ?