<?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 Scripting problem- extracting certain data from a qvd in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Scripting-problem-extracting-certain-data-from-a-qvd/m-p/1216720#M856158</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi i have imported various qvds into my qlikview document. One of them being a product qvd that contains thousands of product numbers. I would like to ask how i would specify in the script to only load a certain view of these products&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for example&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;501,502,503,504&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;These are all product numbers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
    <dc:creator>aaronnayan</dc:creator>
    <dc:date>2020-11-25T16:16:04Z</dc:date>
    <item>
      <title>Scripting problem- extracting certain data from a qvd</title>
      <link>https://community.qlik.com/t5/QlikView/Scripting-problem-extracting-certain-data-from-a-qvd/m-p/1216720#M856158</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi i have imported various qvds into my qlikview document. One of them being a product qvd that contains thousands of product numbers. I would like to ask how i would specify in the script to only load a certain view of these products&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for example&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;501,502,503,504&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;These are all product numbers&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/Scripting-problem-extracting-certain-data-from-a-qvd/m-p/1216720#M856158</guid>
      <dc:creator>aaronnayan</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Scripting problem- extracting certain data from a qvd</title>
      <link>https://community.qlik.com/t5/QlikView/Scripting-problem-extracting-certain-data-from-a-qvd/m-p/1216721#M856159</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Aaron,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="xml" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_1486375473742738 jive_text_macro" jivemacro_uid="_1486375473742738" modifiedtitle="true"&gt;
&lt;P style="font-size: 13.3333px;"&gt;Load *&lt;/P&gt;
&lt;P style="font-size: 13.3333px;"&gt;From&lt;/P&gt;
&lt;P style="font-size: 13.3333px;"&gt;Product.qvd (qvd)&lt;/P&gt;
&lt;P style="font-size: 13.3333px;"&gt;Where Match(Product_Field, '501','502','503','504')&lt;/P&gt;

&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt; You can also try like below&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="xml" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_14863754829768118 jive_text_macro" jivemacro_uid="_14863754829768118" modifiedtitle="true"&gt;
&lt;P style="font-size: 13.3333px;"&gt;Product:&lt;/P&gt;
&lt;P style="font-size: 13.3333px;"&gt;LOAD * INLINE [&lt;/P&gt;
&lt;P style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Products_To_Load&lt;/P&gt;
&lt;P style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 501&lt;/P&gt;
&lt;P style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 502&lt;/P&gt;
&lt;P style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 503&lt;/P&gt;
&lt;P style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 504&lt;/P&gt;
&lt;P style="font-size: 13.3333px;"&gt;];&lt;/P&gt;
&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 10pt;"&gt;Data:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="font-size: 13.3333px;"&gt;Load *&lt;/P&gt;
&lt;P style="font-size: 13.3333px;"&gt;From&lt;/P&gt;
&lt;P style="font-size: 13.3333px;"&gt;Product.qvd (qvd)&lt;/P&gt;
&lt;P style="font-size: 13.3333px;"&gt;Where Exists(Products_To_Load, Product_Field);&lt;/P&gt;
&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 10pt;"&gt;DROP Table Product;&lt;/SPAN&gt;&lt;/P&gt;

&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Feb 2017 10:05:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Scripting-problem-extracting-certain-data-from-a-qvd/m-p/1216721#M856159</guid>
      <dc:creator>tamilarasu</dc:creator>
      <dc:date>2017-02-06T10:05:33Z</dc:date>
    </item>
  </channel>
</rss>

