<?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: Load csv file with condition in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Load-csv-file-with-condition/m-p/928350#M973561</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;example with resident&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Table:&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;LOAD * Inline [&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Customer, Date, Mode&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;A, 01/01/2015, Cash&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;A, 02/01/2015, CreditCard&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;A1, 02/01/2015, CreditCard&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;A1, 03/01/2015, Cash&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;A1, 04/01/2015, Check&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;A2, 01/01/2015, Cash&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;A2, 02/01/2015, CreditCard&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;B, 02/01/2015, Check&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="font-size: 10pt; line-height: 1.5em;"&gt;];&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;let v=chr(39) &amp;amp; 'Cash' &amp;amp; chr(39) &amp;amp; ',' &amp;amp; chr(39) &amp;amp; 'Check' &amp;amp; chr(39);&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;TableFiltered:&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;NoConcatenate&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;load *, 1 as NewField Resident Table&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;where match(Mode, $(v));&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 10 Sep 2015 19:29:06 GMT</pubDate>
    <dc:creator>maxgro</dc:creator>
    <dc:date>2015-09-10T19:29:06Z</dc:date>
    <item>
      <title>Load csv file with condition</title>
      <link>https://community.qlik.com/t5/QlikView/Load-csv-file-with-condition/m-p/928348#M973559</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi guys,&lt;/P&gt;&lt;P&gt;Is it doable to load csv file with condition IN ()&lt;/P&gt;&lt;P&gt;LOAD SessionID, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Url, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; TimeStamp, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ValidData&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;&lt;C&gt;&lt;/C&gt;&lt;/P&gt;&lt;P&gt;(txt, codepage is 1251, embedded labels, delimiter is ',', msq)&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;WHERE (SessionID in ($(vValue)))&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Order by SessionId, [TimeStamp] ASC;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Sep 2015 19:17:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-csv-file-with-condition/m-p/928348#M973559</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-09-10T19:17:19Z</dc:date>
    </item>
    <item>
      <title>Re: Load csv file with condition</title>
      <link>https://community.qlik.com/t5/QlikView/Load-csv-file-with-condition/m-p/928349#M973560</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think it should work if you put the variable within single quotes:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;WHERE (SessionID in ('$(vValue)'))&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Sep 2015 19:22:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-csv-file-with-condition/m-p/928349#M973560</guid>
      <dc:creator>sinanozdemir</dc:creator>
      <dc:date>2015-09-10T19:22:11Z</dc:date>
    </item>
    <item>
      <title>Re: Load csv file with condition</title>
      <link>https://community.qlik.com/t5/QlikView/Load-csv-file-with-condition/m-p/928350#M973561</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;example with resident&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Table:&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;LOAD * Inline [&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Customer, Date, Mode&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;A, 01/01/2015, Cash&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;A, 02/01/2015, CreditCard&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;A1, 02/01/2015, CreditCard&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;A1, 03/01/2015, Cash&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;A1, 04/01/2015, Check&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;A2, 01/01/2015, Cash&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;A2, 02/01/2015, CreditCard&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;B, 02/01/2015, Check&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="font-size: 10pt; line-height: 1.5em;"&gt;];&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;let v=chr(39) &amp;amp; 'Cash' &amp;amp; chr(39) &amp;amp; ',' &amp;amp; chr(39) &amp;amp; 'Check' &amp;amp; chr(39);&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;TableFiltered:&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;NoConcatenate&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;load *, 1 as NewField Resident Table&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;where match(Mode, $(v));&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Sep 2015 19:29:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-csv-file-with-condition/m-p/928350#M973561</guid>
      <dc:creator>maxgro</dc:creator>
      <dc:date>2015-09-10T19:29:06Z</dc:date>
    </item>
    <item>
      <title>Re: Load csv file with condition</title>
      <link>https://community.qlik.com/t5/QlikView/Load-csv-file-with-condition/m-p/928351#M973562</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Sep 2015 19:44:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-csv-file-with-condition/m-p/928351#M973562</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-09-10T19:44:26Z</dc:date>
    </item>
  </channel>
</rss>

