Hi @vish_p
2 things
1- filtering a data source on a date field in SharePoint will run into delegation issue because Date fields are not delegable https://docs.microsoft.com/en-us/connectors/sharepointonline/
What you can do is for the date field create an equivalent date_number field which stores the date information in numeric format
example : Date 8/20/2019
Your date_number field stores this value as a Number like 20190820
Note: YYYYMMdd format
This is the extra step you would have to take currently to avoid delegation on date fields
2- Since your list has grown beyond 5000 items, you need to ensure that the column you are filtering on has an index set on it
You can go to list settings and set index on the Date_Number field
The you can safely query your SharPoint list using the Date_Number field (numeric)
Regards,
Reza Dorrani
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly