Hi, I have built an action tracker in PowerApps. The backend is a SP list. I have a gallery which filters all of the "in progress" or "not started" actions. I also have a "Category" column with three different categories choose from. I have created a drop down which allows the user to select from one of the three categories. This is the code from my dropdown:
Sort(
Distinct(
[@'101 HR Action Tracker'],
CategoryDuplicate
),
Value,
SortOrder.Ascending
)
The drop down itself is working. The issue I am having is getting the gallery to respond to the drop down selection that is made. This is the code I currently have in place :
Filter([@'101 HR Action Tracker'],Progress.Value="Not Started"||Progress.Value="In Progress") , Or(IsBlank(Dropdown1.Selected),
CategoryDuplicate = Dropdown1.Selected.Value))
Please let me know your thoughts on what I should change. Thanks!