I just want to create csv file automatically everyday
for example, today just is created 20200417.csv
tomorrow will be created 20200418.csv ...
Is it possible??
You can use map
command and get the data in csv using below query. You can append
OR join
below query with your main search.
| makeresults | eval date = strftime(now(), "%Y%m%d") | map search="| inputlookup $date$.csv"
thanks for your help!
thanks for your help!