Is it possible to add a Search Bar that can search all Data within the Gallery.
For instance, if I search 'Open' it would provide me with listings of any item that has the word Open within it?
@rroque ,
Should be like this - assuming ctx_sort_column is a Variable.
SortByColumns(
Search(
OPTrack_FormsInventoryEnhancedTables,
txtSearch.Text,
FORM_NO
),
ctx_sort_column,
If(
ctx_sort_order,
SortOrder.Ascending,
SortOrder.Descending
)
)
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
MVP (Business Applications) Visit my blog Practical Power Apps
Hi @kevtun1982 ,
Note that Search() is not Delegable, so you will get a Delegation warning on this
Search(
Filter(
NewNCR,
(
StatusDropdown.Selected.Value="All" ||
Status.Value = StatusDropdown.Selected.Value
) &&
(
CategoryDropdown.SelectedText.Value="All" ||
Category.Value = CategoryDropdown.Selected.Value
)
),
SearchBox.Text,
"Listings",
"OtherField1",
"OtherField2"
)
Replace your other fields on the last two and add any more.
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
WarrenBelz
791
Most Valuable Professional
MS.Ragavendar
410
Super User 2025 Season 2
mmbr1606
275
Super User 2025 Season 2