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
not contains doesn't work with odata filter query but can use 'not' like this:
$filter=not(startswith(fieldName,'text to search'))
@hodgson41 you can't use not(contains) in a filter query. Have a look at the blog post by Tom Riha here which shows what you can do instead.