<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Storing Set Analysis Values into a QVD in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Storing-Set-Analysis-Values-into-a-QVD/m-p/786159#M662566</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there a way where I can export data into txt file through script.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 08 Oct 2018 11:45:24 GMT</pubDate>
    <dc:creator>kranthi239</dc:creator>
    <dc:date>2018-10-08T11:45:24Z</dc:date>
    <item>
      <title>Storing Set Analysis Values into a QVD</title>
      <link>https://community.qlik.com/t5/QlikView/Storing-Set-Analysis-Values-into-a-QVD/m-p/786156#M662563</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm wondering if it is possible to store some values that are derived from Set Analysis into a qvd?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Currently, we have around 10 text boxes that contain values and we want them to be stored into a qvd every day when the .qvw is ran on a daily basis. I know this is something that is possible for a single value without the set analysis.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is this something that's possible?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Andrew&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Mar 2015 16:08:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Storing-Set-Analysis-Values-into-a-QVD/m-p/786156#M662563</guid>
      <dc:creator />
      <dc:date>2015-03-11T16:08:22Z</dc:date>
    </item>
    <item>
      <title>Re: Storing Set Analysis Values into a QVD</title>
      <link>https://community.qlik.com/t5/QlikView/Storing-Set-Analysis-Values-into-a-QVD/m-p/786157#M662564</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i haven't seen a way to do this. Set Analysis is valid in UI expressions only and QVDs are generated with the script statement 'store' only. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;there is a good chance you can do a for loop in the script to produce an array of QVDs based on different values. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;would that be of interest ? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Mar 2015 17:24:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Storing-Set-Analysis-Values-into-a-QVD/m-p/786157#M662564</guid>
      <dc:creator>JonnyPoole</dc:creator>
      <dc:date>2015-03-11T17:24:11Z</dc:date>
    </item>
    <item>
      <title>Re: Storing Set Analysis Values into a QVD</title>
      <link>https://community.qlik.com/t5/QlikView/Storing-Set-Analysis-Values-into-a-QVD/m-p/786158#M662565</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not directly. In the script you can store data into a qvd. But in the script you cannot use set analysis. You will have to create a straight table or pivot table with your set analysis expressions. You can export this table to excel or a text file. You can next load that file in a Qlikview document and store the data in a qvd file.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Mar 2015 17:30:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Storing-Set-Analysis-Values-into-a-QVD/m-p/786158#M662565</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2015-03-11T17:30:56Z</dc:date>
    </item>
    <item>
      <title>Re: Storing Set Analysis Values into a QVD</title>
      <link>https://community.qlik.com/t5/QlikView/Storing-Set-Analysis-Values-into-a-QVD/m-p/786159#M662566</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there a way where I can export data into txt file through script.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Oct 2018 11:45:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Storing-Set-Analysis-Values-into-a-QVD/m-p/786159#M662566</guid>
      <dc:creator>kranthi239</dc:creator>
      <dc:date>2018-10-08T11:45:24Z</dc:date>
    </item>
    <item>
      <title>Re: Storing Set Analysis Values into a QVD</title>
      <link>https://community.qlik.com/t5/QlikView/Storing-Set-Analysis-Values-into-a-QVD/m-p/786160#M662567</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You could store them like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;store TableName into TableName.txt (txt);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Oct 2018 10:45:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Storing-Set-Analysis-Values-into-a-QVD/m-p/786160#M662567</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2018-10-09T10:45:59Z</dc:date>
    </item>
    <item>
      <title>Re: Storing Set Analysis Values into a QVD</title>
      <link>https://community.qlik.com/t5/QlikView/Storing-Set-Analysis-Values-into-a-QVD/m-p/786161#M662569</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Marcus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I mean UI Table chart to .txt file;&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Oct 2018 11:29:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Storing-Set-Analysis-Values-into-a-QVD/m-p/786161#M662569</guid>
      <dc:creator>kranthi239</dc:creator>
      <dc:date>2018-10-09T11:29:23Z</dc:date>
    </item>
    <item>
      <title>Re: Storing Set Analysis Values into a QVD</title>
      <link>https://community.qlik.com/t5/QlikView/Storing-Set-Analysis-Values-into-a-QVD/m-p/786162#M662574</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you could use macros (won't work within the AJAX client) you could export charts into various fileformats - just search here for macros + export.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Oct 2018 15:36:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Storing-Set-Analysis-Values-into-a-QVD/m-p/786162#M662574</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2018-10-09T15:36:16Z</dc:date>
    </item>
    <item>
      <title>Re: Storing Set Analysis Values into a QVD</title>
      <link>https://community.qlik.com/t5/QlikView/Storing-Set-Analysis-Values-into-a-QVD/m-p/786163#M662577</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use Nprinting to capture daily KPI and store reports of NPrinting at a location.&lt;/P&gt;&lt;P&gt;QVD from set analysis is not possible&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Oct 2018 15:40:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Storing-Set-Analysis-Values-into-a-QVD/m-p/786163#M662577</guid>
      <dc:creator>passionate</dc:creator>
      <dc:date>2018-10-09T15:40:38Z</dc:date>
    </item>
  </channel>
</rss>

