Hello all,
Â
I have an app whit a date picker. I use that value to try to filter a data source (comming from an Azure SQL database).
I use the following formula on a gallery:
Filter('[dbo].[Inspection]', Date=dpDate.SelectedDate)and this on a label:
LookUp('[dbo].[Inspection]', Date=dpDate.SelectedDate, InspectionID)I get not records on the first formula and nothing on the second formula. If I filter for another fields, I get records.
If I change the first formula to:
Filter('[dbo].[Inspection]', Date<>dpDate.SelectedDate)I get all records.
Â
Any ideas? What is the date value passed to SQL?