Hi All,
Quite new to powerapps, but built quite a handy app so far but I'm looking to run two formulas in a Gallery in the Items selection, and don't know how to mold the two together.
I have this which makes sure the gallery only shows items raised by that user, and sorts it by newest case:
SortByColumns(
Filter(VBMLForm,'Created By'.Email = User().Email
)
,"ID"
,Descending
)
And then I have this which is the formula for my buttons which filter the gallery based on approval status,
If(
IsBlank(vFilter),
VBMLForm,
Filter(
VBMLForm,
'Task Status'.Value=vFilter
)
)
However given my only recent introduction into Coding I'm not sure on how I go about forging these together, they work perfectly on their own, but I don't know how to merge them into one. Any help would be appreciated 🙂