Basically I am doing a Get Items and attempting to filter the data based on a date range. I have come across MANY different suggestions and have attempted them all with no luck.
Here is what I am working with:
From Date: Date Only
To Date: Date Only
The Get Items works properly with no query and returns everything, but I want to filter based on passed in dates.
Here is how it currently looks:
I have tried many different options for converting the date values such as datetime'fromDate' with no luck.
All I receive is the filter is not valid.
Thanks for any help. 😃
Solved! Go to Solution.
remove the 00:00, if you want that in there incorporate it into the formatDateTime, if you want to incorporate it you have a couple options.
formatDateTime(addDays(utcNow(),-1),'MM-dd-yyyy hh:mm')
but if you want the start of the day, I would use startOfDay as you can format it in there as well:
startOfDay(addDays(utcNow(),-1),'MM-dd-yyyy hh:mm')
Actually the problem it that it only works with -1, any other number brings an empty list
I would check the error you are getting, for the date maybe put it within a compose operation to see what the end result is and the query being sent to the get items.
If you are expecting 10,000 entities returned then you would definitely turn on the pagination, I think its limit is 5,000 so you can most likely remove the top 10,000.
I think to go further into it I would need to see more of your process
The first Microsoft-sponsored Power Platform Conference is coming in September. 100+ speakers, 150+ sessions, and what's new and next for Power Platform.
Learn to digitize and optimize business processes and connect all your applications to share data in real time.
User | Count |
---|---|
28 | |
26 | |
23 | |
17 | |
10 |
User | Count |
---|---|
63 | |
55 | |
29 | |
27 | |
25 |