Skip to main content
Announcements
Qlik Community Office Hours, March 20th. Former Talend Community users, ask your questions live. SIGN UP
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

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