
Filter('[SOURCE], ThisRecord.S1=date_picker.SelectedDate || ThisRecord.S2=date_picker.SelectedDate || ThisRecord.S3=date_picker.SelectedDate || ThisRecord.S4=date_picker.SelectedDate)
Interestingly, when I expand this code to convert all dates to ShortDates, it filters correctly. This code below, works:
Filter('[SOURCE]', IsBlank(date_picker) || Text(ThisRecord.S1, DateTimeFormat.ShortDate)=Text(date_picker.SelectedDate, DateTimeFormat.ShortDate) || Text(ThisRecord.S2, DateTimeFormat.ShortDate)=Text(date_picker.SelectedDate, DateTimeFormat.ShortDate) || Text(ThisRecord.S3, DateTimeFormat.ShortDate)=Text(date_picker.SelectedDate, DateTimeFormat.ShortDate) || Text(ThisRecord.S4, DateTimeFormat.ShortDate)=Text(date_picker.SelectedDate, DateTimeFormat.ShortDate))
The problem with this is that the Text Function won't delegate and I anticipate that becoming an issue down the road.
Are there any known issues with Date columns between the Dataverse and PowerApps? I'd love to get this to work without running into the delegation issues related to Text Functions.
Thank you in advance!