I have a dashboard that has a dropdown which takes in the values from a csv file. Is there a way I can add on to the results of the csv file without altering the csv file so that these two results show up in the dropdown?
<search>
<query> | inputlookup domains.csv | fields display, domain | dedup domain
</query>
<earliest>-24h@h</earliest>
<latest>now</latest> </search>
I need to add a couple more results to the dropdown that I'm currently extracting from the csv file.
Any help is appreciated!
Hi @thenormalone
You sure can, try this...
<search>
<query> | inputlookup domains.csv | inputlookup append=true other_domains.csv | fields display, domain | dedup domain
</query>
<earliest>-24h@h</earliest>
<latest>now</latest> </search>
Hope it helps
Thanks for the response. I should've mentioned that I have tried that and it works, I'm curious if there a way to append results without using another cvs file?
Sure is...
...<your normal search>...
| inputlookup append=true domains.csv
| ...