Hi Everyone,
My app has a gallery and I am trying to setup a filter, so users can select 2 options to filter from. Meaning that they can select a code from a dropdown and a range of date.
Option 1 dropdown
Option 2 Start date
Option 2 End date
I have the following code setup to do the filter:
If(Dropdown1.Selected.Value = "All", PAN2, Filter(PAN2, 'Pay Group' = Dropdown1.Selected.Value, 'Effective Date' >= DatePicker1.SelectedDate && 'Effective Date' <= DatePicker2.SelectedDate))
The issue is that when All is selected from the dropdown and the two DatePickers is selected it doesn't seem to be working. what I am missing here?
Thanks for your help,