I have a SharePoint list with many columns and I ma using gallery to show the data.
I want to apply three filters in Gallery.
1. Filter 1 : For Column "Status". The combo box items are coming directly from Status column value via Choice function and it works fine when I select a value from dropdown.
2. Filter 2 : For Column "Location". The combo box items are coming directly from Location column value via Choice function and it works fine when I select a value from dropdown.
3. Filter 3: This is where I am stuck. The column name is "" but it is a multiselect choice field in the list. Now the combo box for this filter shows value correctly using choice field but I have tried most of the blogs and not be to find a solution.
I want user to have all three filter and whatever they select , gallery should show data accordingly.
If I only have fist tow filters, it works fine. But I cannot get the third filter working.
This is my Items code for the Gallery:
Filter('Request Form','Created By'.Email=User().Email && (IsBlank(Statuscombobox.Selected.Value) Or IsEmpty(Statuscombobox.SelectedItems) Or ('Process Status'.Value=Statuscombobox.Selected.Value)) && (IsBlank(LocationCombobox.Selected.Value) Or IsEmpty(LocationCombobox.SelectedItems) Or ('Plant Location'.Value=LocationComboboxSelected.Value)) && (IsBlank(domaincombobox.Selected.Value) Or IsEmpty(domaincombobox.SelectedItems) Or (<Not sure what to put here as it is a multiselect column>) ))))
I am not looking to select filter options in this thirds filter, only one option in filter 3 at a time.
Appreciate your suggestions.
Thanks,
Aditya