<?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: Creating a QVD in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Creating-a-QVD/m-p/688608#M1069883</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes you can use a QVD file or also the same QVW file&lt;/P&gt;&lt;P&gt;&lt;IMG alt="qvd-qvw.png" class="jive-image" src="https://community.qlik.com/legacyfs/online/64534_qvd-qvw.png" style="width: 620px; height: 349px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 15 Aug 2014 16:09:23 GMT</pubDate>
    <dc:creator>ecolomer</dc:creator>
    <dc:date>2014-08-15T16:09:23Z</dc:date>
    <item>
      <title>Creating a QVD</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-a-QVD/m-p/688607#M1069882</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have created a table in a QVW with numerous dimensions and expressions. I would like to use this table in another QVW and was wondering how I would be able to do this. I believe I have to create a QVD and then load the QVD into the second QVW but I am not certain. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help would be greatly appreciated. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks, &lt;/P&gt;&lt;P&gt;Isabel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Aug 2014 16:06:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-a-QVD/m-p/688607#M1069882</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-08-15T16:06:08Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a QVD</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-a-QVD/m-p/688608#M1069883</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes you can use a QVD file or also the same QVW file&lt;/P&gt;&lt;P&gt;&lt;IMG alt="qvd-qvw.png" class="jive-image" src="https://community.qlik.com/legacyfs/online/64534_qvd-qvw.png" style="width: 620px; height: 349px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Aug 2014 16:09:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-a-QVD/m-p/688608#M1069883</guid>
      <dc:creator>ecolomer</dc:creator>
      <dc:date>2014-08-15T16:09:23Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a QVD</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-a-QVD/m-p/688609#M1069884</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;// store the table (I suppose t is the table) in a qvd in the first QVW&lt;/P&gt;&lt;P&gt;store t into t.qvd (qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// read the qvd with the table in second QVW &lt;/P&gt;&lt;P&gt;t:&lt;/P&gt;&lt;P&gt;load * from t.qvd (qvd); &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Aug 2014 16:14:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-a-QVD/m-p/688609#M1069884</guid>
      <dc:creator>maxgro</dc:creator>
      <dc:date>2014-08-15T16:14:29Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a QVD</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-a-QVD/m-p/688610#M1069885</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;Yes you can use this table from QVW 1 into QVW 2, you need create QVD file and this is an exmaple:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FactTable:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dimension1,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dimension2,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dimension3,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Metric1,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Metric2,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MatricN&lt;/P&gt;&lt;P&gt;From myfile.xlsx;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Store FactTable into FactTable.qvd; // With this you can create the QVD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or if you create a Straigth Table (chart) in Desing Area and you need this chart in QVD file you need a macro using export function.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Aug 2014 16:19:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-a-QVD/m-p/688610#M1069885</guid>
      <dc:creator />
      <dc:date>2014-08-15T16:19:17Z</dc:date>
    </item>
  </channel>
</rss>

