I have some data about email statistics, where one of relevant fields is source IP address. I'm building a dashboard and wanted to add input field on that source IP. That input field should have three choices: All possible source IPs. That is going to be "*". our own MX addresses. every external IP (i.e., all possible source IPs, except the ones listed in 2) In the case of 1 and 2 I have token and search is going to have expression like "src_ip = X". But I cannot find how to combine it with 3, where I'd have to negate condition, something like "src_ip != MX_IP". Any ideas? Also, at the moment I'm trying to do it via checkbox, but if another type would be more suitable, let me know.
... View more