Hello,
I added a multi-select combo box drop-down filter to a gallery that I already had multiple single select dropdown filters on, which were working fine, but nothing is working now that I've added the combo box to it. This is my first time using a multi-select combo box and I can't figure out what's wrong with the code. I'm hoping someone can help me out.
The Item property of my gallery is currently:
SortByColumns(
Filter(
'WORK LOG',
StartsWith('Contractor Name', SearchBoxCONTRACTORNAME_1.Text) &&
StartsWith('Contract Number', SearchBoxCONTRACTNUMBER_1.Text) &&
(DropdownCOSLead2.Selected.Value=Blank() || 'COS Lead'=DropdownCOSLead2.Selected.Value) &&
(DropdownProcessingStatus_1.Selected.Value=Blank() ||'Processing Status'.Value=DropdownProcessingStatus_1.Selected.Value) &&
(DropdownDIVISION_1.Selected.Value=Blank() || Division=DropdownDIVISION_1.Selected.Value) &&
(DropdownCOSSpecialist_1.Selected.Value=Blank() || 'COS Specialist'=DropdownCOSSpecialist_1.Selected.Value) &&
(ComboBox2.SelectedItems.Value=Blank() || 'COS Specialist1'.Value=ComboBox2.SelectedItems.Value)
"Modified",
SortOrder.Descending
)
Thank you in advance to anyone who can help!
Samantha