Filter(
'Devices',
StartsWith(
'Number',
TextSearchBox1.Text
) || StartsWith(
'Type'.Value,
TextSearchBox1.Text
)
),
'Software'.Value in ComboBox1.SelectedItems.Value
)
The data is stored in a sharepoint list. When I only use the text search box to filter the gallery it will work correctly but I cannot get it to work when I add in the combobox.
Any insight as to what I could be doing wrong and how to correct it is apprectiated. Thanks
I have a gallery I am attempting to search by text search box then an optional combobox. The gallery contains a list of devices and the searchbox can filter the list by the device's serial number or device type then the combobox can filter the devices based on their software.
I currently have the following as my code but nothing gets displayed in the gallery.
Filter(