Hi all, i might be making no sense here. But here is what i am trying to do from data source as sharepoint list. I have list called (Issues) with below fields (ones needed for the purpose only)
StaffName (people field)
IssueDate(Date field)
KPI (Lookup field of another list)
I have a screen and placed a gallary2 with this data source. I placed a combobox4 with items property (Choices([@Issues].StaffName) and another Dropdown3 with items property (Choices([@Issues].KPI) and two Datepickers (Datepicker1 and Datepicker2).
I would like to filter the Gallary2 based on date range (issueDate) with Datepicker1 and Datepicker2, combobox4 selected employee name (StaffName) and Drobdown3 (KPI lookup). So far i am able to filter using combobox4 with below filter on Gallary2 but i dont have any idea how to mix all these filtering at for same gallary! I am just a beginner and any heads up for this would be much appreciate. Thanks.
Sort(If(CountRows(ComboBox4.SelectedItems)<1,Issues,Filter(Issues,StaffName.DisplayName = ComboBox4.Selected.DisplayName)), IssueDate, Descending)