All,
Curious if this is easy to do?
I have a 10+ locations, when a user clicks the location button they navigate to a screen with a gallery, where only those location items are visible - rather than all the items from the SPO list.
I thought variables, each buttons OnSelect set to a vLocation1, vLocation2 etc. variable, this is my code and some from previous apps but not entirely sure if this the best way to deal with this, but more importantly if it is, well I'm stuck.
In SPO I have a location field which is a choice column
Sort(
Filter(
SPOList,
(
If(vLocation1 = true, // not sure how to take this stament further?
) &&
StartsWith(
Name.DisplayName,
tbSearchInput.Text
)
),
RefNo,
Descending
)
Thank You