Hi,
I'm trying to filter item from SP list based on two dropdowns in powerapps.
First drop down is with months.
Second dropdown is with employee name.
Both the items are dropdown entries in the SP list
SP list name is Data
First dropdown is created using below formula in the powerapps dropdown item
Distinct(Data,Month.Value)
On the second dropdown. I want only the employee name having the month selected from the first dropdown. So I used below formula. But the formula is showing error.
Filter('Data','Engineer Name'.Value,(Month.Value=MonthDropdown.Selected.Result))
I need help in rectifying this.