<?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: If contains, else in load in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/If-contains-else-in-load/m-p/1394641#M423539</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Gan, can you close the thread marking correct/helpful responses accordingly. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;BR /&gt;V.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 02 Nov 2017 14:09:47 GMT</pubDate>
    <dc:creator>vishsaggi</dc:creator>
    <dc:date>2017-11-02T14:09:47Z</dc:date>
    <item>
      <title>If contains, else in load</title>
      <link>https://community.qlik.com/t5/QlikView/If-contains-else-in-load/m-p/1394635#M423533</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I want to create a new column N that would look at the value of Column A, if Column A contains stream as 'abc', then the value of Column N should be 'Yes', if not contain 'abc', the value should be 'No'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In excel, for Column N it is something like: =IF(ISNUMBER(SEARCH("abc",A1)),"Yes","No").&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to do that in Qlik by adding a new Column and call it 'N'. How to do that? Thanks in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Nov 2017 17:35:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/If-contains-else-in-load/m-p/1394635#M423533</guid>
      <dc:creator>rachelpurple</dc:creator>
      <dc:date>2017-11-01T17:35:20Z</dc:date>
    </item>
    <item>
      <title>Re: If contains, else in load</title>
      <link>https://community.qlik.com/t5/QlikView/If-contains-else-in-load/m-p/1394636#M423534</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;IF(A='abc', 'Yes', 'No')&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; AS&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; N&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Nov 2017 18:45:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/If-contains-else-in-load/m-p/1394636#M423534</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-11-01T18:45:07Z</dc:date>
    </item>
    <item>
      <title>Re: If contains, else in load</title>
      <link>https://community.qlik.com/t5/QlikView/If-contains-else-in-load/m-p/1394637#M423535</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Luda,&lt;/P&gt;&lt;P&gt;1 option:&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN lang="EN-US" style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt;tmp:&lt;BR /&gt; &lt;/SPAN&gt;&lt;STRONG&gt;&lt;SPAN lang="EN-US" style="font-size: 9.0pt; font-family: 'Courier New'; color: blue;"&gt;LOAD&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN lang="EN-US" style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt; *, &lt;/SPAN&gt;&lt;SPAN lang="EN-US" style="font-size: 9.0pt; font-family: 'Courier New'; color: blue;"&gt;IF&lt;/SPAN&gt;&lt;SPAN lang="EN-US" style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt;(&lt;/SPAN&gt;&lt;SPAN lang="EN-US" style="font-size: 9.0pt; font-family: 'Courier New'; color: blue;"&gt;WildMatch&lt;/SPAN&gt;&lt;SPAN lang="EN-US" style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt;(&lt;/SPAN&gt;&lt;SPAN lang="EN-US" style="font-size: 9.0pt; font-family: 'Courier New'; color: maroon;"&gt;MyField&lt;/SPAN&gt;&lt;SPAN lang="EN-US" style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt;,'*ABC*'),'YES','NO') &lt;/SPAN&gt;&lt;SPAN lang="EN-US" style="font-size: 9.0pt; font-family: 'Courier New'; color: blue;"&gt;AS&lt;/SPAN&gt; &lt;SPAN lang="EN-US" style="font-size: 9.0pt; font-family: 'Courier New'; color: maroon;"&gt;NewField&lt;/SPAN&gt;&lt;SPAN lang="EN-US" style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt;;&lt;BR /&gt; &lt;/SPAN&gt;&lt;STRONG&gt;&lt;SPAN lang="EN-US" style="font-size: 9.0pt; font-family: 'Courier New'; color: blue;"&gt;LOAD&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN lang="EN-US" style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt; * &lt;/SPAN&gt;&lt;SPAN lang="EN-US" style="font-size: 9.0pt; font-family: 'Courier New'; color: blue;"&gt;Inline&lt;/SPAN&gt;&lt;SPAN lang="EN-US" style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt;&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN lang="EN-US" style="font-size: 9.0pt; font-family: 'Courier New'; color: maroon;"&gt;[&lt;BR /&gt; MyField&lt;BR /&gt; ABCDEF&lt;BR /&gt; 123ABC&lt;BR /&gt; DES123&lt;BR /&gt; HNT6778&lt;BR /&gt; 098FBGG&lt;BR /&gt; OOOABC&lt;BR /&gt; ]&lt;/SPAN&gt;&lt;SPAN lang="EN-US" style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt;; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN lang="EN-US" style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN lang="EN-US" style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt;&lt;IMG alt="ysnp.png" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/181781_ysnp.png" style="height: auto;" /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Nov 2017 22:08:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/If-contains-else-in-load/m-p/1394637#M423535</guid>
      <dc:creator>el_aprendiz111</dc:creator>
      <dc:date>2017-11-01T22:08:01Z</dc:date>
    </item>
    <item>
      <title>Re: If contains, else in load</title>
      <link>https://community.qlik.com/t5/QlikView/If-contains-else-in-load/m-p/1394638#M423536</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If(Index(A,'abc'),'Yes','No') as N&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Marco&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Nov 2017 22:10:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/If-contains-else-in-load/m-p/1394638#M423536</guid>
      <dc:creator>MarcoWedel</dc:creator>
      <dc:date>2017-11-01T22:10:21Z</dc:date>
    </item>
    <item>
      <title>Re: If contains, else in load</title>
      <link>https://community.qlik.com/t5/QlikView/If-contains-else-in-load/m-p/1394639#M423537</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks very much, it works!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Nov 2017 13:36:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/If-contains-else-in-load/m-p/1394639#M423537</guid>
      <dc:creator>rachelpurple</dc:creator>
      <dc:date>2017-11-02T13:36:58Z</dc:date>
    </item>
    <item>
      <title>Re: If contains, else in load</title>
      <link>https://community.qlik.com/t5/QlikView/If-contains-else-in-load/m-p/1394640#M423538</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks very much, it works!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Nov 2017 13:37:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/If-contains-else-in-load/m-p/1394640#M423538</guid>
      <dc:creator>rachelpurple</dc:creator>
      <dc:date>2017-11-02T13:37:06Z</dc:date>
    </item>
    <item>
      <title>Re: If contains, else in load</title>
      <link>https://community.qlik.com/t5/QlikView/If-contains-else-in-load/m-p/1394641#M423539</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Gan, can you close the thread marking correct/helpful responses accordingly. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;BR /&gt;V.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Nov 2017 14:09:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/If-contains-else-in-load/m-p/1394641#M423539</guid>
      <dc:creator>vishsaggi</dc:creator>
      <dc:date>2017-11-02T14:09:47Z</dc:date>
    </item>
  </channel>
</rss>

