<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	
	>
<channel>
	<title>
	Comments on: Write To CSV With QlikView STORE	</title>
	<atom:link href="https://www.quickintelligence.co.uk/write-csv-qlikview-store/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.quickintelligence.co.uk/write-csv-qlikview-store/</link>
	<description></description>
	<lastBuildDate>Wed, 05 Apr 2023 15:48:02 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.0</generator>
	<item>
		<title>
		By: Steve Dark		</title>
		<link>https://www.quickintelligence.co.uk/write-csv-qlikview-store/#comment-3111149</link>

		<dc:creator><![CDATA[Steve Dark]]></dc:creator>
		<pubDate>Fri, 10 Jun 2022 17:09:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.quickintelligence.co.uk/?p=1888#comment-3111149</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.quickintelligence.co.uk/write-csv-qlikview-store/#comment-3111146&quot;&gt;KLRice&lt;/a&gt;.

Hi,
Absolutely! Put the timestamp into a variable and then use that in the store statement:

let vTS = Date(now(), &#039;MMDDYYY_hhmmss&#039;);
STORE MyTable INTO [..\Ouptut\MyCSVFile_$(vTS).csv] (txt);

Note that I have omitted the colons, as I think that might cause a problem in a filename. Also, you should be aware that if you are writing to a file in Sense you need to refer to a library, like this:

STORE MyTable INTO [lib://DataFiles/MyCSVFile_$(vTS).csv] (txt);

Hope that works out for you.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://www.quickintelligence.co.uk/write-csv-qlikview-store/#comment-3111146">KLRice</a>.</p>
<p>Hi,<br />
Absolutely! Put the timestamp into a variable and then use that in the store statement:</p>
<p>let vTS = Date(now(), &#8216;MMDDYYY_hhmmss&#8217;);<br />
STORE MyTable INTO [..\Ouptut\MyCSVFile_$(vTS).csv] (txt);</p>
<p>Note that I have omitted the colons, as I think that might cause a problem in a filename. Also, you should be aware that if you are writing to a file in Sense you need to refer to a library, like this:</p>
<p>STORE MyTable INTO [lib://DataFiles/MyCSVFile_$(vTS).csv] (txt);</p>
<p>Hope that works out for you.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: KLRice		</title>
		<link>https://www.quickintelligence.co.uk/write-csv-qlikview-store/#comment-3111146</link>

		<dc:creator><![CDATA[KLRice]]></dc:creator>
		<pubDate>Fri, 10 Jun 2022 16:19:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.quickintelligence.co.uk/?p=1888#comment-3111146</guid>

					<description><![CDATA[Is there a way to add a timestep to the file name:  Example:  STORE MyTable INTO ..\Ouptut\MyCSVFile_mmddyyy_hh:mm:ss.csv (txt);]]></description>
			<content:encoded><![CDATA[<p>Is there a way to add a timestep to the file name:  Example:  STORE MyTable INTO ..\Ouptut\MyCSVFile_mmddyyy_hh:mm:ss.csv (txt);</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Steve Dark		</title>
		<link>https://www.quickintelligence.co.uk/write-csv-qlikview-store/#comment-3109723</link>

		<dc:creator><![CDATA[Steve Dark]]></dc:creator>
		<pubDate>Fri, 25 Feb 2022 09:18:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.quickintelligence.co.uk/?p=1888#comment-3109723</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.quickintelligence.co.uk/write-csv-qlikview-store/#comment-3109716&quot;&gt;Emanuel&lt;/a&gt;.

Hi, sadly there are a number of things which can not be changed about the file that is being written, regardless of the parameters set in the brackets. If you are not able to change your destination system for the CSV you may need to trigger another process to transform the file after it has been created.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://www.quickintelligence.co.uk/write-csv-qlikview-store/#comment-3109716">Emanuel</a>.</p>
<p>Hi, sadly there are a number of things which can not be changed about the file that is being written, regardless of the parameters set in the brackets. If you are not able to change your destination system for the CSV you may need to trigger another process to transform the file after it has been created.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Emanuel		</title>
		<link>https://www.quickintelligence.co.uk/write-csv-qlikview-store/#comment-3109716</link>

		<dc:creator><![CDATA[Emanuel]]></dc:creator>
		<pubDate>Fri, 25 Feb 2022 00:51:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.quickintelligence.co.uk/?p=1888#comment-3109716</guid>

					<description><![CDATA[I have a question about command Store into textfile.txt (txt, delimiter is &#039;,&#039;)

When we open the textfile.txt (using notepad) created from the Store command it always has a line break at the end i.e: there is a blank row at the end, and this means a problem for our purpose:

 

Doeas anyone know how to avoid this happens?]]></description>
			<content:encoded><![CDATA[<p>I have a question about command Store into textfile.txt (txt, delimiter is &#8216;,&#8217;)</p>
<p>When we open the textfile.txt (using notepad) created from the Store command it always has a line break at the end i.e: there is a blank row at the end, and this means a problem for our purpose:</p>
<p>Doeas anyone know how to avoid this happens?</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Steve Dark		</title>
		<link>https://www.quickintelligence.co.uk/write-csv-qlikview-store/#comment-3098241</link>

		<dc:creator><![CDATA[Steve Dark]]></dc:creator>
		<pubDate>Fri, 21 Aug 2020 20:45:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.quickintelligence.co.uk/?p=1888#comment-3098241</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.quickintelligence.co.uk/write-csv-qlikview-store/#comment-3098237&quot;&gt;Bill Lay&lt;/a&gt;.

Thanks Bill. You can tweak quoting and encoding in ther parameters also. Recently I have been writing to HTML and sending in the body of emails with Qlik Web Connectors for dynamic data driven alerts. This works well. ]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://www.quickintelligence.co.uk/write-csv-qlikview-store/#comment-3098237">Bill Lay</a>.</p>
<p>Thanks Bill. You can tweak quoting and encoding in ther parameters also. Recently I have been writing to HTML and sending in the body of emails with Qlik Web Connectors for dynamic data driven alerts. This works well. </p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Bill Lay		</title>
		<link>https://www.quickintelligence.co.uk/write-csv-qlikview-store/#comment-3098237</link>

		<dc:creator><![CDATA[Bill Lay]]></dc:creator>
		<pubDate>Fri, 21 Aug 2020 17:35:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.quickintelligence.co.uk/?p=1888#comment-3098237</guid>

					<description><![CDATA[&lt;p&gt;Great post Steve! I did not know the bit about delimiters. And the HTML part is genius.&lt;br /&gt;
thanks, Bill&lt;/p&gt;
]]></description>
			<content:encoded><![CDATA[<p>Great post Steve! I did not know the bit about delimiters. And the HTML part is genius.<br />
thanks, Bill</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Steve Dark		</title>
		<link>https://www.quickintelligence.co.uk/write-csv-qlikview-store/#comment-3093421</link>

		<dc:creator><![CDATA[Steve Dark]]></dc:creator>
		<pubDate>Mon, 24 Feb 2020 20:41:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.quickintelligence.co.uk/?p=1888#comment-3093421</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.quickintelligence.co.uk/write-csv-qlikview-store/#comment-3093416&quot;&gt;Kushal Makwana&lt;/a&gt;.

I can&#039;t think that I did write a specific part two of this post. What did I mention that you feel requires more expansion? A couple of posts that may be of interest, following on from the writing of HTML, are &lt;a href=&quot;https://www.quickintelligence.co.uk/send-data-from-qlik-load-script/&quot;&gt;Send Data from the Qlik Load Script&lt;/a&gt; and &lt;a href=&quot;https://www.quickintelligence.co.uk/qlik-sense-web-server/&quot;&gt;Using Qlik Sense as a Web Server&lt;/a&gt;. Hope those are of interest.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://www.quickintelligence.co.uk/write-csv-qlikview-store/#comment-3093416">Kushal Makwana</a>.</p>
<p>I can&#8217;t think that I did write a specific part two of this post. What did I mention that you feel requires more expansion? A couple of posts that may be of interest, following on from the writing of HTML, are <a href="https://www.quickintelligence.co.uk/send-data-from-qlik-load-script/">Send Data from the Qlik Load Script</a> and <a href="https://www.quickintelligence.co.uk/qlik-sense-web-server/">Using Qlik Sense as a Web Server</a>. Hope those are of interest.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Kushal Makwana		</title>
		<link>https://www.quickintelligence.co.uk/write-csv-qlikview-store/#comment-3093416</link>

		<dc:creator><![CDATA[Kushal Makwana]]></dc:creator>
		<pubDate>Mon, 24 Feb 2020 17:22:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.quickintelligence.co.uk/?p=1888#comment-3093416</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.quickintelligence.co.uk/write-csv-qlikview-store/#comment-11438&quot;&gt;Steve Dark&lt;/a&gt;.

Hi Steve,
Do we have part 2 of this blog as I cannot see it on your list?]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://www.quickintelligence.co.uk/write-csv-qlikview-store/#comment-11438">Steve Dark</a>.</p>
<p>Hi Steve,<br />
Do we have part 2 of this blog as I cannot see it on your list?</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Steve Dark		</title>
		<link>https://www.quickintelligence.co.uk/write-csv-qlikview-store/#comment-42136</link>

		<dc:creator><![CDATA[Steve Dark]]></dc:creator>
		<pubDate>Thu, 12 Jan 2017 08:42:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.quickintelligence.co.uk/?p=1888#comment-42136</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.quickintelligence.co.uk/write-csv-qlikview-store/#comment-42135&quot;&gt;Anas Abbasi&lt;/a&gt;.

Hi. Thanks for your comment. Unfortunately you can&#039;t write to an Excel file with the STORE statement. If you have QlikView you could create a straight table with the data in, and then export to Excel using a macro on an open trigger. You could have an Excel macro, or linked query, to the CSV file. If you have other requirements for NPrinting, this will make light work if it - but it&#039;s cost prohibitive for just this purpose. 

Beyond that I would suggest emailing Qlik petitioning for UDCs to be able to load from CSV. This would seem to be a sensible feature. 

Hope that helps.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://www.quickintelligence.co.uk/write-csv-qlikview-store/#comment-42135">Anas Abbasi</a>.</p>
<p>Hi. Thanks for your comment. Unfortunately you can&#8217;t write to an Excel file with the STORE statement. If you have QlikView you could create a straight table with the data in, and then export to Excel using a macro on an open trigger. You could have an Excel macro, or linked query, to the CSV file. If you have other requirements for NPrinting, this will make light work if it &#8211; but it&#8217;s cost prohibitive for just this purpose. </p>
<p>Beyond that I would suggest emailing Qlik petitioning for UDCs to be able to load from CSV. This would seem to be a sensible feature. </p>
<p>Hope that helps.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Anas Abbasi		</title>
		<link>https://www.quickintelligence.co.uk/write-csv-qlikview-store/#comment-42135</link>

		<dc:creator><![CDATA[Anas Abbasi]]></dc:creator>
		<pubDate>Thu, 12 Jan 2017 08:02:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.quickintelligence.co.uk/?p=1888#comment-42135</guid>

					<description><![CDATA[HI Steve Dark
I was wondering, is there a way we can store the table file in XLSX (excel) format, I have been trying to do that to create UDC in Qlik Sense. Please help me if there is a way. I have tried doing it in .csv but its not working.]]></description>
			<content:encoded><![CDATA[<p>HI Steve Dark<br />
I was wondering, is there a way we can store the table file in XLSX (excel) format, I have been trying to do that to create UDC in Qlik Sense. Please help me if there is a way. I have tried doing it in .csv but its not working.</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>

<!--
Performance optimized by W3 Total Cache. Learn more: https://www.boldgrid.com/w3-total-cache/?utm_source=w3tc&utm_medium=footer_comment&utm_campaign=free_plugin

Page Caching using Disk: Enhanced 
Minified using Disk

Served from: www.quickintelligence.co.uk @ 2026-06-28 20:33:28 by W3 Total Cache
-->