You cannot AFAIK.
A workaround could be to create a calculated column and then filter.
eg. create a Not-Red column with the formula
= IF ([YOUR_COLUMN_NAME] = "Red", "False", "True")
Then filter
?FilterField1 = Not-Red & FilterValue2 = True
source
share