Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us in Toronto Sept 9th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
maasool
Contributor III
Contributor III

Export app data with code

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

1 Solution

Accepted Solutions
cbushey1
Creator III
Creator III

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.

View solution in original post

2 Replies
cbushey1
Creator III
Creator III

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.

maasool
Contributor III
Contributor III
Author

I already used this workaround, which you described. It does the work, as I need to export one simple table. Thanks for thinking along.