
Creator III
2016-04-15
10:22 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
How to store table data into a text .TXT file using the script?
Hi all,
How do you store table data into a text .TXT file using the script?
I am aware of Store statement but reading about states it only does qvd and csv files?
I would like to store the data in a text file including the headers.
Anyone know how please?
- Tags:
- qlikview_scripting
4 Replies

MVP
2016-04-15
10:24 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Try this:
STORE TableName into File.txt (txt);


Partner - Champion
2016-04-15
10:30 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Or even better:
STORE TableName into File.txt (txt);

MVP
2016-04-15
10:34 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
100% much better
UPDATE: Not anymore though
9,038 Views


Creator III
2016-04-15
10:37 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Also, you can add custom delimiter, like this:
STORE Transactions into Transactions.txt (txt, delimiter is '|');
