I'd like to use an ODATA filter to exclude records that contain certain words in their title.
I can see that 'substringof' can be used to include records that contain certain words. So this will filter records that contain certain text: substringof('text to check for',Title)
What would the syntax be if I want to exclude all records that contain that text?
I've tried a few different things using 'ne' but with no success.