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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
pavanthota
Creator
Creator

Exported Final table into .txt format using script

Hi All,

I have made one table by using script. But, i want to load whole data of the table into .txt file with comma delimeted by using script.  Could you please anyone help me

Labels (1)
1 Solution

Accepted Solutions
pavanthota
Creator
Creator
Author

Thanks for your help

View solution in original post

2 Replies
flipside
Partner - Specialist II
Partner - Specialist II

Hi Pavan,

     STORE {table} INTO {Filepath\filename} (txt);

You can change the delimiter also ...

     STORE {table} INTO {Filepath\filename} (txt, delimiter is '|');

If you don't specify a filepath the file is created in same folder as the qvw.

flipside

pavanthota
Creator
Creator
Author

Thanks for your help