I have a date value which is stored as string in sql.It is named as 'extracted_date'. I fetch the date value into a gallery in power apps. Now I want to filter the 'extracted_date' column using a range with 2 date picker controls.(date_picker1,date_picker2)
In the gallery Items property, I use the below formula
Filter(datasource,DateValue(extracted_date)>date_picker1.selecteddate,Datevalue(extracted_date)<=date_picker2.selecteddate).
But I get delegation error and the data is not displaying at all in the gallery. I have the delegation limit set to 500 in the advanced settings.
How to get rid of the delegation error.