I have added a filter to a Get Item step in a flow: InspectionDue le addDays(utcNow(),60,'yyyy-MM-dd')
but it does not filter out any data; the entire list is returned even though only about 4 items in the list have dates less than 60 from now.
How can I trouble- shoot this?
Here is part of the returned data:
Truck_Number | Due_Date |
6196 | 2019-11-30 |
0045 | 2019-12-31 |
0047 | 2019-12-31 |
3518 | 2020-01-31 |
7906 | 2020-01-31 |
8540 | 2020-02-29 |
3553 | 2020-02-29 |
2474 | 2020-02-29 |
6359 | 2020-02-29 |
6928 | 2020-02-29 |
3250 | 2020-03-31 |
I'd say the filter works correctly, InspectionDue le addDays(utcNow(),60,'yyyy-MM-dd') will return all items where InspectionDue <= 2020-12-29, and all the dates you shared are less than December 2020.
You should put there also bottom limit for today's date to get only items with InspectionDue between today and today+60.
InspectionDue le 'addDays(utcNow(),60,'yyyy-MM-dd')' and InspectionDue ge 'utcNow('yyyy-MM-dd')'
I did not put in all the dates returned - you are correct all those would be returned. Sorry for the confusion.
I have it working now
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 |
---|---|
31 | |
27 | |
27 | |
21 | |
10 |