Hello,
I have a gallery control and Edit form control. Currently the controls have these functions:
Gallery Control:
Items: 'Work progress tracker'
OnSelect: Set(var,ThisItem)
Edit Form Control:
Data source: 'Work progress tracker'
Item: var
OnSuccess:
Set(var,First(SortByColumns(Filter('Work progress tracker',ID > var.ID),"ID",Ascending)))
I am able to edit the items for the above functions.

However, if suppose I add dropdowns Priority and Progress to filter Gallery items. How can I get only these items to edit?

Thank you.