Hi,
Trying to create a filter on my get items to filter out results that don't fit the below criteria.
Entries need to have a ship date (Field9) of yesterday (-1 day)
Entries doesn't contain C-EXV in field 2
This is my query so far which isnt working
field_9 eq '@{formatDateTime(addDays(utcNow(),-1), 'dd-MM-yyyy')}' and not(contains(item()?['field2'], 'C-EXV'))
The query to filter out all items where the ship date wasnt yesterday works by its self (field_9 eq '@{formatDateTime(addDays(utcNow(),-1), 'dd-MM-yyyy')}') but when i add in the latter part this doesnt work.
Any help would be appreciated.