<?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 into if &amp;quot;value&amp;quot; in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Store-into-if-quot-value-quot/m-p/1520402#M749574</link>
    <description>&lt;P&gt;Loading with TestMatch did not work but this gave me the solution though:&lt;/P&gt;&lt;P&gt;Bekend:&lt;/P&gt;&lt;P&gt;Load&lt;BR /&gt;VDBArtikel,&lt;BR /&gt;EAN,&lt;BR /&gt;Merk,&lt;BR /&gt;Maat,&lt;BR /&gt;Season,&lt;BR /&gt;Bruto,&lt;BR /&gt;Netto,&lt;BR /&gt;Akgid&lt;BR /&gt;Resident Ban&lt;BR /&gt;Where Exists(Akgid);&lt;/P&gt;&lt;P&gt;Store * from Bekend into vdban.txt (delimiter is ';', txt);&lt;/P&gt;&lt;P&gt;Drop table Bekend;&lt;/P&gt;&lt;P&gt;It works now.&lt;/P&gt;&lt;P&gt;Thanks a lot!&lt;/P&gt;</description>
    <pubDate>Thu, 13 Dec 2018 12:42:58 GMT</pubDate>
    <dc:creator>bramvdpoel</dc:creator>
    <dc:date>2018-12-13T12:42:58Z</dc:date>
    <item>
      <title>Store into if "value"</title>
      <link>https://community.qlik.com/t5/QlikView/Store-into-if-quot-value-quot/m-p/1520342#M749571</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I want to make different files depending on field value. Is this possible?&lt;/P&gt;&lt;P&gt;Final:&lt;/P&gt;&lt;P&gt;Load*,&lt;BR /&gt;If(Exists(Akgid), Akgid, 'Null') as TestMatch&lt;BR /&gt;;&lt;BR /&gt;&lt;BR /&gt;Load&lt;BR /&gt;VDBArtikel,&lt;BR /&gt;EAN,&lt;BR /&gt;Merk,&lt;BR /&gt;Maat,&lt;BR /&gt;Season,&lt;BR /&gt;Bruto,&lt;BR /&gt;Netto,&lt;BR /&gt;Akgid&lt;BR /&gt;Resident Ban&lt;BR /&gt;;&lt;/P&gt;&lt;P&gt;If TestMatch = 'Null' then store into file1.txt&lt;/P&gt;&lt;P&gt;Else store into file2.txt&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Store-into-if-quot-value-quot/m-p/1520342#M749571</guid>
      <dc:creator>bramvdpoel</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Store into if "value"</title>
      <link>https://community.qlik.com/t5/QlikView/Store-into-if-quot-value-quot/m-p/1520349#M749572</link>
      <description>&lt;P&gt;This is possible, however there is an issue with your exists clause. Given that all possible values of Akgid already exist in 'Ban', you won't end up with any 'Null' values in your resulting table.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Pseudo code to split:&lt;/P&gt;&lt;P&gt;your initial load&lt;/P&gt;&lt;P&gt;then&lt;/P&gt;&lt;P&gt;resident load where TestMatch = 'Null'&lt;/P&gt;&lt;P&gt;Store and drop&lt;/P&gt;&lt;P&gt;resident load where TestMatch&amp;nbsp;&amp;lt;&amp;gt; 'Null'&lt;/P&gt;&lt;P&gt;Store and drop&lt;/P&gt;</description>
      <pubDate>Thu, 13 Dec 2018 11:20:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Store-into-if-quot-value-quot/m-p/1520349#M749572</guid>
      <dc:creator>marcus_malinow</dc:creator>
      <dc:date>2018-12-13T11:20:18Z</dc:date>
    </item>
    <item>
      <title>Re: Store into if "value"</title>
      <link>https://community.qlik.com/t5/QlikView/Store-into-if-quot-value-quot/m-p/1520359#M749573</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Sure you can store the data in a different name. Try this,&lt;/P&gt;&lt;P&gt;Tab1:&lt;/P&gt;&lt;P&gt;Load *,&lt;/P&gt;&lt;P&gt;From table1&lt;/P&gt;&lt;P&gt;where match(Field Name. 'Akgid')&lt;/P&gt;&lt;P&gt;Store Tab1 into [Lib: Loaction\Tab1.qvd];&lt;/P&gt;&lt;P&gt;Drop table Tab1;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Tab2:&lt;/P&gt;&lt;P&gt;Load *,&lt;/P&gt;&lt;P&gt;From table1&lt;/P&gt;&lt;P&gt;where Field Name &amp;lt;&amp;gt;&amp;nbsp; 'Akgid';&lt;/P&gt;&lt;P&gt;Store Tab2 into [Lib: Loaction\Tab2.qvd];&lt;/P&gt;</description>
      <pubDate>Thu, 13 Dec 2018 11:26:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Store-into-if-quot-value-quot/m-p/1520359#M749573</guid>
      <dc:creator>mohan_1105</dc:creator>
      <dc:date>2018-12-13T11:26:54Z</dc:date>
    </item>
    <item>
      <title>Re: Store into if "value"</title>
      <link>https://community.qlik.com/t5/QlikView/Store-into-if-quot-value-quot/m-p/1520402#M749574</link>
      <description>&lt;P&gt;Loading with TestMatch did not work but this gave me the solution though:&lt;/P&gt;&lt;P&gt;Bekend:&lt;/P&gt;&lt;P&gt;Load&lt;BR /&gt;VDBArtikel,&lt;BR /&gt;EAN,&lt;BR /&gt;Merk,&lt;BR /&gt;Maat,&lt;BR /&gt;Season,&lt;BR /&gt;Bruto,&lt;BR /&gt;Netto,&lt;BR /&gt;Akgid&lt;BR /&gt;Resident Ban&lt;BR /&gt;Where Exists(Akgid);&lt;/P&gt;&lt;P&gt;Store * from Bekend into vdban.txt (delimiter is ';', txt);&lt;/P&gt;&lt;P&gt;Drop table Bekend;&lt;/P&gt;&lt;P&gt;It works now.&lt;/P&gt;&lt;P&gt;Thanks a lot!&lt;/P&gt;</description>
      <pubDate>Thu, 13 Dec 2018 12:42:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Store-into-if-quot-value-quot/m-p/1520402#M749574</guid>
      <dc:creator>bramvdpoel</dc:creator>
      <dc:date>2018-12-13T12:42:58Z</dc:date>
    </item>
  </channel>
</rss>

