Thanks a lot for your answer. In between I was able to combine field transformation and field extraction, so right now I have the variable named MARCO. In a search over the last 30 day there occur 3 values: 200, 204 and 400. But using your where-clause returns no results at all. And the 2nd param of the mvfind function is a regex, so it has to be quoted. Here some results: | where isnull(mvfind(MARCO,"204")) return the 200 and 400. | where isnull(mvfind(MARCO,"400")) return the 200 and 204. | where isnull(mvfind(MARCO,"200")) return 0 events. 🙄 So now I need to explain the results a normal search without where-clause. 200,204,200 200 200,204 200,400 200,200,204 So somehow there is always a 200, and removing those results in 0 events. Do you know another way of filtering? Currently I want the (200,400) and maybe in the future I will get something like (200,500) or (200,404) which I also want... Best regards, Marco
... View more