Hi,
I need to filter the data table "LCP." This table has multiple columns with the data type "Choices," allowing for multiple selections.
I have a ComboBox that takes the selection options "Web," "Mobile," "Workflow" from the column "Application." For example, if I choose the options "Web" and "Mobile" in the ComboBox, only the data should be displayed where both "Web" and "Mobile" are selected (intersection), not the data where either "Web" or "Mobile" is selected. The same applies when all three options are selected. Only the ones that offer all three options should be displayed in the gallery.
This is the filter I currently have, but unfortunately, it's not working:
Filter(LCP, cbApplication.Selected.Value in Application.Value);