Hi.
I have the following code to search my gallery. The code is on the Items Action of the gallery.
Search(
'DataSourceName)',
SearchBox.Text,
"Name"
)
This works fine.
I would like to also include a filter on the items action to say Filter(DataSourceName, Name.Email = User().Email)
A) How do i include both the Search and the filter on the same items action.
I tried the below, but it doesnt like it
Search(
'DataSourceName)',
SearchBox.Text,
"Name"
) & Filter('DataSourceName,'Name'.Email = User().Email))
B) Once the filter is applied and step A above is working.
How can i create a button to say, clear the filter so every item is shown.
Thanks