Hi,
i am trying to filter SQL DB based on DatePicker on PowerApps. The Format of the Date is SQL Date is yyyy-mm-dd. When i try Below Formula it returns nothing
Filter(SQLDB,DateOfBirth=DatePicker3.SelectedDate)
i changed the formula a bit and this time i only get 2000 records
Filter(AddColumns(SQLDB,"datecon",Year(DateOfBirth) * 10000 + Month(DateOfBirth) * 100 + Day(DateOfBirth)),datecon=value(Year(DatePicker3.SelectedDate) * 10000 + Month(DatePicker3.SelectedDate) * 100 + Day(DatePicker3.SelectedDate))
DB is PDW and literally i cannot modify/update it.
is there still any workound to be able to filter SQLDB by date?
SQLDB has over 2mil records
Thanks