Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello dear Qlik Community,
Is it possible to write into code, that table from one app will be stored on drive?
I would like to automate this 'right qlik on table --> export data' and store created table automatically on a drive for a user, who don't have access to QS.
Thanks,
maasool
You could do this in the script by using the STORE command and writing the table out as excel, csv, txt. In order for this approach to work, all the fields you wish to export would need to live in the same table. You could always create a new table and applymap/join the fields you need to it, and then after the store command has run drop the table so it no longer exists in the script.
You could do this in the script by using the STORE command and writing the table out as excel, csv, txt. In order for this approach to work, all the fields you wish to export would need to live in the same table. You could always create a new table and applymap/join the fields you need to it, and then after the store command has run drop the table so it no longer exists in the script.
I already used this workaround, which you described. It does the work, as I need to export one simple table. Thanks for thinking along.