Hi Guys,
Any help of advice would be greatly appreciated.
Within the items function for my gallery I'm currently using the below formula
Switch(
varTabSelected,
1,
'Signal Prep Sheet',
2,
Filter(
'Signal Prep Sheet',
'Is another prep shift required?'.Value = "Yes"
),
3,
Filter(
'Signal Prep Sheet',
'Is another prep shift required?'.Value = "No - Fully Prepped"
)
)
I would like to create the ability for users to sort and also search within the same gallery by using the below
SortByColumns(Filter([@'Signal Prep Sheet'],StartsWith('Signal ID',TextInputSearch_1.Text)),"Title",If(varSortOrder,Descending,Ascending))
My question is can I combine these functions without breaking my app or do I need to create a separate gallery to be be able to sort ascending/descending?
If it's possible to combine these functions how would I go about writing this?
Thanks