Using "<>" is what I would use to exclude a value, correct? If so how would I write a filter for two values using "<>" ?
One way: [YourDataItem] not in ('A','B')
Another way: [YourDataItem] <> 'A' and [YourDataItem] <> 'B'
Second way (and far less elegant than Lynn's)
[your data item] <> 'A' and [your data item] <> 'B'
Sent from my iPad using Tapatalk