I need code for the Gallery to react when a search is entered in the SearchBox or a department or jobtitle is selected in the comboboxes.
Announcements
With(
{
_Data:
Filter(
SPListName,
(
Len(cbDepartment.Selected.Value) = 0 ||
Department.Value = cbDepartment.Selected.Value
) &&
(
Len(cbJobTitle.Selected.Value) = 0 ||
JobTitle.Value = cbJobTitle.Selected.Value
)
)
},
Search(
_Data,
SearchBox.Text,
YourFieldToSearchHere
)
)
WarrenBelz
791
Most Valuable Professional
MS.Ragavendar
410
mmbr1606
275
Super User 2025 Season 1