<?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: Pull only specific field values in to table. in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Pull-only-specific-field-values-in-to-table/m-p/812601#M1260998</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;Try like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="sql" __jive_macro_name="code" class="jive_text_macro jive_macro_code _jivemacro_uid_1415775105665151" jivemacro_uid="_1415775105665151"&gt;
&lt;P&gt;Temp:&lt;/P&gt;
&lt;P&gt;load * Inline&lt;/P&gt;
&lt;P&gt;[&lt;/P&gt;
&lt;P&gt;Person,Team&lt;/P&gt;
&lt;P&gt;Amy Smith,TeamA &lt;/P&gt;
&lt;P&gt;Bob Rubin,TeamA&lt;/P&gt;
&lt;P&gt;Jon Mac,TeamB&lt;/P&gt;
&lt;P&gt;Nizam,TeamB&lt;/P&gt;
&lt;P&gt;Amit,TeamC&lt;/P&gt;
&lt;P&gt;Sam,TeamC&lt;/P&gt;
&lt;P&gt;];&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;NoConcatenate&lt;/P&gt;
&lt;P&gt;Main:&lt;/P&gt;
&lt;P&gt;load&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; *&lt;/P&gt;
&lt;P&gt;resident Temp&lt;/P&gt;
&lt;P&gt;where match(Person,'Amy Smith','Bob Rubin','Jon Mac');&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;DROP Table Temp;&lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;ASHFAQ&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 12 Nov 2014 06:46:34 GMT</pubDate>
    <dc:creator>ashfaq_haseeb</dc:creator>
    <dc:date>2014-11-12T06:46:34Z</dc:date>
    <item>
      <title>Pull only specific field values in to table.</title>
      <link>https://community.qlik.com/t5/QlikView/Pull-only-specific-field-values-in-to-table/m-p/812599#M1260993</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 a table called TeamList&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In it I have two fields, Person and Team. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are multiple names under the Person field, but I only want hand picked 5 or 10 names, and bring it into the table. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I in the script limit the Person names to specific names like "Amy Smith" , "Bob Rubin", "Jon Mac" and so on..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Once pulled the table should only give me those names and team they are associated to. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Alam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Jan 2026 18:19:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Pull-only-specific-field-values-in-to-table/m-p/812599#M1260993</guid>
      <dc:creator />
      <dc:date>2026-01-26T18:19:17Z</dc:date>
    </item>
    <item>
      <title>Re: Pull only specific field values in to table.</title>
      <link>https://community.qlik.com/t5/QlikView/Pull-only-specific-field-values-in-to-table/m-p/812600#M1260995</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;with match function&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NewTeamList:&lt;/P&gt;&lt;P&gt;noconcatenate&lt;/P&gt;&lt;P&gt;load&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Person, Team&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;resident &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;TeamList&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;where match(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Person,&amp;nbsp; '&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Amy Smith', 'Bob Rubin', 'Jon Mac') &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;drop table TeamList;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Nov 2014 19:59:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Pull-only-specific-field-values-in-to-table/m-p/812600#M1260995</guid>
      <dc:creator>maxgro</dc:creator>
      <dc:date>2014-11-11T19:59:15Z</dc:date>
    </item>
    <item>
      <title>Re: Pull only specific field values in to table.</title>
      <link>https://community.qlik.com/t5/QlikView/Pull-only-specific-field-values-in-to-table/m-p/812601#M1260998</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;Try like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="sql" __jive_macro_name="code" class="jive_text_macro jive_macro_code _jivemacro_uid_1415775105665151" jivemacro_uid="_1415775105665151"&gt;
&lt;P&gt;Temp:&lt;/P&gt;
&lt;P&gt;load * Inline&lt;/P&gt;
&lt;P&gt;[&lt;/P&gt;
&lt;P&gt;Person,Team&lt;/P&gt;
&lt;P&gt;Amy Smith,TeamA &lt;/P&gt;
&lt;P&gt;Bob Rubin,TeamA&lt;/P&gt;
&lt;P&gt;Jon Mac,TeamB&lt;/P&gt;
&lt;P&gt;Nizam,TeamB&lt;/P&gt;
&lt;P&gt;Amit,TeamC&lt;/P&gt;
&lt;P&gt;Sam,TeamC&lt;/P&gt;
&lt;P&gt;];&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;NoConcatenate&lt;/P&gt;
&lt;P&gt;Main:&lt;/P&gt;
&lt;P&gt;load&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; *&lt;/P&gt;
&lt;P&gt;resident Temp&lt;/P&gt;
&lt;P&gt;where match(Person,'Amy Smith','Bob Rubin','Jon Mac');&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;DROP Table Temp;&lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;ASHFAQ&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Nov 2014 06:46:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Pull-only-specific-field-values-in-to-table/m-p/812601#M1260998</guid>
      <dc:creator>ashfaq_haseeb</dc:creator>
      <dc:date>2014-11-12T06:46:34Z</dc:date>
    </item>
    <item>
      <title>Re: Pull only specific field values in to table.</title>
      <link>https://community.qlik.com/t5/QlikView/Pull-only-specific-field-values-in-to-table/m-p/812602#M1260999</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi alam,&lt;/P&gt;&lt;P&gt;there are more than one way to do this.massimo and ashfaq have shown one way. another what you can do is&lt;/P&gt;&lt;P&gt;inline:&lt;/P&gt;&lt;P&gt;load * inline[&lt;/P&gt;&lt;P&gt;name&lt;/P&gt;&lt;P&gt;amy&lt;/P&gt;&lt;P&gt;bob&lt;/P&gt;&lt;P&gt;jon ];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;load * &lt;/P&gt;&lt;P&gt;from teamlist where exists(name);&lt;/P&gt;&lt;P&gt;drop table inline;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or, after the inline load you can do&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;inner keep&lt;/P&gt;&lt;P&gt;load * from teamlist;&lt;/P&gt;&lt;P&gt;drop table inline;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;do as you wish &lt;/P&gt;&lt;P&gt;cheers,&lt;/P&gt;&lt;P&gt;kunal&amp;nbsp; bhattacharjee&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Nov 2014 07:07:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Pull-only-specific-field-values-in-to-table/m-p/812602#M1260999</guid>
      <dc:creator />
      <dc:date>2014-11-12T07:07:42Z</dc:date>
    </item>
    <item>
      <title>Re: Pull only specific field values in to table.</title>
      <link>https://community.qlik.com/t5/QlikView/Pull-only-specific-field-values-in-to-table/m-p/812603#M1261000</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;Table1:&lt;/P&gt;&lt;P&gt;Load *&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; From Tablename&lt;/P&gt;&lt;P&gt;where match(Name,&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt; '&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Amy Smith', 'Bob Rubin', 'Jon Mac') &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Nov 2014 07:24:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Pull-only-specific-field-values-in-to-table/m-p/812603#M1261000</guid>
      <dc:creator />
      <dc:date>2014-11-12T07:24:38Z</dc:date>
    </item>
  </channel>
</rss>

