Search results Index=appln sourcetype=alog|lookup abc.csv..........| eval.....|eval.....| values(Job) ,values(id) Above search results 600+ rows in below format Job,Id
aaa,1234
ccc,2345
ddd,9879
fff,6743
eee,8754
zzz,4006 Lookupfile (has 600+ rows) Job1, Job2 , Job3
ccc,eee,zzz
ddd,fff,aaa Output table should look like below(600 + rows) Job1,id1,Job2,id2,Job3,id3
ccc,2345,eee,8754,zzz,4006
ddd,9879,fff,6743,aaa,1234 In the above case how will I get id1, id2 ,id3 results from above search by joining with lookup file
... View more