Hey, I just tried but I don't think this is working properly. ASSETtoken can be either Value1, Value2 or All. It is set by the user. If it is Value1, I want to use File1.csv, Value2=> File2.csv, All => File1 + File2. In both files there is a column called columnX Here is my code following your example: | inputlookup File1.csv | inputlookup File2.csv
| eval columnX=coalesce(File1.csv,File2.csv)
| search columnX="$ASSETtoken$"
| sort columnX
| table columnX
... View more