Hi,
Can anyone help me, I have built an APP that has a gallery in that I would like to be able to search, sort and filter.
I watched a video by Shane Young which help me create the gallery with searching and filtering, but I would also like to add sorting.
I would like to be able to sort by date or kit, ascending or descending.
My item formula on the gallery is as follows.
Search(
If(
Filter_Recipe.Selected.Value = "All" And Filter_Status.Selected.Value = "All",
'POLY RUNS',
Filter_Recipe.Selected.Value = "All" And Filter_Status.Selected.Value <> "All",
Filter(
'POLY RUNS',
'Kit Status' = Filter_Status.Selected.Value
),
Filter_Recipe.Selected.Value <> "All" And Filter_Status.Selected.Value = "All",
Filter(
'POLY RUNS',
Recipe = Filter_Recipe.Selected.Value
),
Filter_Recipe.Selected.Value <> "All" And Filter_Status.Selected.Value <> "All",
Filter(
'POLY RUNS',
Recipe = Filter_Recipe.Selected.Value And 'Kit Status' = Filter_Status.Selected.Value
)
),
TextInput4.Text,
"RunNumber",
"Kit",
"Kit_x0020_Status",
"Works_x0020_Order_x0020_Head_x0020_1",
"Works_x0020_Order_x0020_Head_x0020_2","Recipe"
)
Can someone please help me with the code so I can add sorting via the date or kit number. I would also like to have these fucntions on a a button for each one.
Thanks

Report
All responses (
Answers (