Hello, I am building an app that a gallery of records, some of which will be hidden depending on a value in a column in a Sharepoint list. That part is working great (please see below and image attached), however I need to add on functionality that will enable the user to unhide any hidden records by clicking a button, and to have the button toggle off/on if the user clicks again and again. Could you help me get the syntax? Thank you so much
SortByColumns(
Filter(mydatasource,
StartsWith(Title, TextSearchBox1.Text) &&
MatchStatus.Value = "Available"
),
"DATA",
If(SortDescending1, Ascending, Descending)
)