<?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: Store QVD using fields from Table in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Store-QVD-using-fields-from-Table/m-p/1414830#M812036</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 08 Oct 2017 21:22:13 GMT</pubDate>
    <dc:creator>ivandrago</dc:creator>
    <dc:date>2017-10-08T21:22:13Z</dc:date>
    <item>
      <title>Store QVD using fields from Table</title>
      <link>https://community.qlik.com/t5/QlikView/Store-QVD-using-fields-from-Table/m-p/1414827#M812033</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;I have attached a QlikView Document which looks at a Excel spreadsheet (also attached), when creating the QVD I want to use the distinct values from Fin Year and Fin Period and use these&amp;nbsp; as part of the QVD name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So for example I would like the QVD Name to be:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Fact_2017_10.qvd&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;STORE Fact into 'C:\Temp\Fact' &amp;amp;'_'&amp;amp;[Fin Year]&amp;amp;'_'&amp;amp;[Fin Period]'&amp;amp;.qvd (QVD);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Store-QVD-using-fields-from-Table/m-p/1414827#M812033</guid>
      <dc:creator>ivandrago</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Store QVD using fields from Table</title>
      <link>https://community.qlik.com/t5/QlikView/Store-QVD-using-fields-from-Table/m-p/1414828#M812034</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Load another table with Distinct values and load fin year and fin month rows in a variable and then add to store command.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;DateFields:&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;LOAD Distinct [Fin Year] as Fin_Year,[Fin Period] as Fin_Period Resident Fact;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;LET vFinYear = Peek('Fin_Year',0,'DateFields');&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;LET vFinMonth = Peek('Fin_Period',0,'DateFields');&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;STORE Fact into Fin_$(vFinYear)_$(vFinMonth).qvd (QVD);&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;DROP Table Fact;&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 08 Oct 2017 21:15:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Store-QVD-using-fields-from-Table/m-p/1414828#M812034</guid>
      <dc:creator>its_anandrjs</dc:creator>
      <dc:date>2017-10-08T21:15:59Z</dc:date>
    </item>
    <item>
      <title>Re: Store QVD using fields from Table</title>
      <link>https://community.qlik.com/t5/QlikView/Store-QVD-using-fields-from-Table/m-p/1414829#M812035</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maybe something like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LET vFile = 'C:\Temp\Fact_'&amp;amp; FieldValue('Fin Year',1) &amp;amp;'_'&amp;amp; FieldValue('Fin Period',1)&amp;amp; '.qvd';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;STORE Fact into [$(vFile)] (QVD);&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 08 Oct 2017 21:20:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Store-QVD-using-fields-from-Table/m-p/1414829#M812035</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2017-10-08T21:20:06Z</dc:date>
    </item>
    <item>
      <title>Re: Store QVD using fields from Table</title>
      <link>https://community.qlik.com/t5/QlikView/Store-QVD-using-fields-from-Table/m-p/1414830#M812036</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 08 Oct 2017 21:22:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Store-QVD-using-fields-from-Table/m-p/1414830#M812036</guid>
      <dc:creator>ivandrago</dc:creator>
      <dc:date>2017-10-08T21:22:13Z</dc:date>
    </item>
  </channel>
</rss>

