<?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: Create QVD with Qlik Tables in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Create-QVD-with-Qlik-Tables/m-p/1538032#M747711</link>
    <description>&lt;P&gt;haha&lt;/P&gt;&lt;P&gt;how to lose time for 2 quotes &lt;span class="lia-unicode-emoji" title=":grinning_face_with_smiling_eyes:"&gt;😄&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot !&lt;/P&gt;</description>
    <pubDate>Thu, 31 Jan 2019 17:14:38 GMT</pubDate>
    <dc:creator>LDenivelle</dc:creator>
    <dc:date>2019-01-31T17:14:38Z</dc:date>
    <item>
      <title>Create QVD with Qlik Tables</title>
      <link>https://community.qlik.com/t5/QlikView/Create-QVD-with-Qlik-Tables/m-p/1538025#M747709</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;I have a table containing all the information to create QVD (see below).&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="data_table.PNG" style="width: 996px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/4973i4D5151F9DCA2DFD8/image-size/large?v=v2&amp;amp;px=999" role="button" title="data_table.PNG" alt="data_table.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;TableDest = concatenation of "Table" and "SousTable". Contains the final name for my QVD.&lt;/P&gt;&lt;P&gt;Code = name of my first column. Contains all the Code (id)&lt;/P&gt;&lt;P&gt;Libellé = name of my second column. Contains all the Libellé&lt;/P&gt;&lt;P&gt;For example, I want to create table perimetre_perimetre (first row of "TableDest"). The final Result would be :&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="example.PNG" style="width: 251px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/4976iF67F8B5A1141100E/image-size/large?v=v2&amp;amp;px=999" role="button" title="example.PNG" alt="example.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I started to do this :&lt;/P&gt;&lt;PRE&gt;TableauClean:&lt;BR /&gt;&amp;nbsp;NoConcatenate&lt;BR /&gt;&amp;nbsp;load&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;*,&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;Table&amp;amp;'_'&amp;amp;SousTable as TableDest&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;BR /&gt;Resident CalculTables&lt;BR /&gt;where not isnull(Code);&lt;BR /&gt;DROP Table CalculTables;&lt;BR /&gt;&lt;BR /&gt;FOR i = 0 to NoOfRows('TableauClean')-1&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;LET TableNameDest = peek('TableDest', i, 'TableauClean');&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;'$(TableNameDest)':&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;NoConcatenate LOAD &lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;Code,&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;Libellé&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;Resident TableauClean&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;where TableDest = $(TableNameDest) //doesn't work !&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;BR /&gt;//store $(TableNameDest) into $(vPathQVD_Dev)\$(TableNameDest).qvd;&lt;BR /&gt;//CALL Recapitulatif('$(TableNameDest)');&lt;BR /&gt;//drop Tables $(TableNameDest);&lt;BR /&gt;NEXT&lt;/PRE&gt;&lt;P&gt;Everything works except at the end when I want to specify which row I want to load for the table :&lt;/P&gt;&lt;PRE&gt;where TableDest = $(TableNameDest) //doesn't work !&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;If I do it manualy like this :&lt;/P&gt;&lt;PRE&gt;where TableDest = 'perimetre_perimetre' //it works !&lt;/PRE&gt;&lt;P&gt;Maybe there is another way to create all the tables and generate QVD. Let me know !&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 04:35:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-QVD-with-Qlik-Tables/m-p/1538025#M747709</guid>
      <dc:creator>LDenivelle</dc:creator>
      <dc:date>2024-11-16T04:35:32Z</dc:date>
    </item>
    <item>
      <title>Re: Create QVD with Qlik Tables</title>
      <link>https://community.qlik.com/t5/QlikView/Create-QVD-with-Qlik-Tables/m-p/1538028#M747710</link>
      <description>Try: where TableDest = '$(TableNameDest)'</description>
      <pubDate>Thu, 31 Jan 2019 17:09:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-QVD-with-Qlik-Tables/m-p/1538028#M747710</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2019-01-31T17:09:33Z</dc:date>
    </item>
    <item>
      <title>Re: Create QVD with Qlik Tables</title>
      <link>https://community.qlik.com/t5/QlikView/Create-QVD-with-Qlik-Tables/m-p/1538032#M747711</link>
      <description>&lt;P&gt;haha&lt;/P&gt;&lt;P&gt;how to lose time for 2 quotes &lt;span class="lia-unicode-emoji" title=":grinning_face_with_smiling_eyes:"&gt;😄&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot !&lt;/P&gt;</description>
      <pubDate>Thu, 31 Jan 2019 17:14:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-QVD-with-Qlik-Tables/m-p/1538032#M747711</guid>
      <dc:creator>LDenivelle</dc:creator>
      <dc:date>2019-01-31T17:14:38Z</dc:date>
    </item>
  </channel>
</rss>

