So this may be a pretty easy task, however I am not getting it to work the way I want it: so here is my problem: I have CSV with 3 columns id,uid,role 1,2342334,master 2,2342334,slave 3,34234234,master (...) Now I want a search on my index that returns me all data where the uid is in the csv. What I did so far is the following : index = myindex [ |inputlookup mycsv.csv | fields 10000 $uid ] However this solution is not perfect. What I would wanted to achieve should be like this index= myindex uid=2342334 or uid =34234234 or uid=(..) Any ideas?
... View more