<?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 Condition - Like Operator in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/IF-Condition-Like-Operator/m-p/906621#M314986</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok ramasamy.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 04 Jun 2015 07:50:10 GMT</pubDate>
    <dc:creator>nihhalmca</dc:creator>
    <dc:date>2015-06-04T07:50:10Z</dc:date>
    <item>
      <title>IF Condition - Like Operator</title>
      <link>https://community.qlik.com/t5/QlikView/IF-Condition-Like-Operator/m-p/906614#M314979</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Need your help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to implement logic at back end. for example. Field name is &lt;SPAN style="font-size: 13.3333330154419px;"&gt;Gaap/Non-Gaap it has values like&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="text-decoration: underline;"&gt;Gaap/Non-Gaap&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Gaapxyz&lt;/P&gt;&lt;P&gt;Gaap 123&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;up to 100 values&lt;/P&gt;&lt;P&gt;Non-Gaapxyz&lt;/P&gt;&lt;P&gt;Non-Gaap 123&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;Up to 150 values&lt;/P&gt;&lt;P&gt;xyz&lt;/P&gt;&lt;P&gt;123&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And my requirement is i want to make these many values as 4 values&lt;/P&gt;&lt;P&gt;value 1: where ever 'Gaap' text is there consider as Gaap&lt;/P&gt;&lt;P&gt;value 2: where ever 'Non-Gaap' text is there consider as Non-Gaap&lt;/P&gt;&lt;P&gt;value 3: xyz&lt;/P&gt;&lt;P&gt;value 4: 123&lt;/P&gt;&lt;P&gt;Result should be&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px; text-decoration: underline;"&gt;Gaap/Non-Gaap&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;Gaap&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;Non-Gaap&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;xyz&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;123&lt;/SPAN&gt;&lt;SPAN style="font-size: 13.3333330154419px; text-decoration: underline;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;For all i know, have to use LIKE operator (WildMatch) in IF condition.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nihhal.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Jun 2015 06:05:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/IF-Condition-Like-Operator/m-p/906614#M314979</guid>
      <dc:creator>nihhalmca</dc:creator>
      <dc:date>2015-06-04T06:05:30Z</dc:date>
    </item>
    <item>
      <title>Re: IF Condition - Like Operator</title>
      <link>https://community.qlik.com/t5/QlikView/IF-Condition-Like-Operator/m-p/906615#M314980</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nihhal,&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;P&gt;LOAD&lt;/P&gt;&lt;P&gt;*,&lt;/P&gt;&lt;P&gt;If(Pick(WildMatch(FieldName, &lt;SPAN style="font-size: 13.3333330154419px;"&gt;'*xyz*', '*123*', &lt;/SPAN&gt; '*&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Non-Gaap&lt;/SPAN&gt;*', '*Gaap*', '*'), 'xyz', '123', '&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Non-Gaap', 'Gaap', FieldName) AS NewFieldName&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;FROM DataSource;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&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; font-size: 13px;"&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Jagan.&lt;BR /&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; font-size: 13px;"&gt;&lt;BR /&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; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Jun 2015 06:11:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/IF-Condition-Like-Operator/m-p/906615#M314980</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2015-06-04T06:11:29Z</dc:date>
    </item>
    <item>
      <title>Re: IF Condition - Like Operator</title>
      <link>https://community.qlik.com/t5/QlikView/IF-Condition-Like-Operator/m-p/906616#M314981</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;P&gt;Load *, Pick(WildMatch(Gaaps, 'xyz', '123', '*Non-Gaap*', '*Gaap*', '*'), 'xyz', '123', 'Non-Gaap', 'Gaap', Gaaps) AS NewGaaps;&lt;/P&gt;&lt;P&gt;Load * Inline&lt;/P&gt;&lt;P&gt;[&lt;/P&gt;&lt;P&gt;Gaaps&lt;/P&gt;&lt;P&gt;Non-Gaapxyz&lt;/P&gt;&lt;P&gt;Non-Gaap 123&lt;/P&gt;&lt;P&gt;Gaapxyz&lt;/P&gt;&lt;P&gt;Gaap 123&lt;/P&gt;&lt;P&gt;xyz&lt;/P&gt;&lt;P&gt;123&lt;/P&gt;&lt;P&gt;sdfs&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Jun 2015 06:33:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/IF-Condition-Like-Operator/m-p/906616#M314981</guid>
      <dc:creator>MayilVahanan</dc:creator>
      <dc:date>2015-06-04T06:33:07Z</dc:date>
    </item>
    <item>
      <title>Re: IF Condition - Like Operator</title>
      <link>https://community.qlik.com/t5/QlikView/IF-Condition-Like-Operator/m-p/906617#M314982</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;Thanks for reply ramasamy.&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;It is working fine, however 'Preceding load is not require here.&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;Thank you.&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;Nihhal.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Jun 2015 07:15:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/IF-Condition-Like-Operator/m-p/906617#M314982</guid>
      <dc:creator>nihhalmca</dc:creator>
      <dc:date>2015-06-04T07:15:03Z</dc:date>
    </item>
    <item>
      <title>Re: IF Condition - Like Operator</title>
      <link>https://community.qlik.com/t5/QlikView/IF-Condition-Like-Operator/m-p/906618#M314983</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;Thanks for reply Jagan.&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;It is not working fine, due to IF condition.&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;Thank you.&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;Nihhal.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Jun 2015 07:17:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/IF-Condition-Like-Operator/m-p/906618#M314983</guid>
      <dc:creator>nihhalmca</dc:creator>
      <dc:date>2015-06-04T07:17:15Z</dc:date>
    </item>
    <item>
      <title>Re: IF Condition - Like Operator</title>
      <link>https://community.qlik.com/t5/QlikView/IF-Condition-Like-Operator/m-p/906619#M314984</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nihal,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For understanding, used like that. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Jun 2015 07:18:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/IF-Condition-Like-Operator/m-p/906619#M314984</guid>
      <dc:creator>MayilVahanan</dc:creator>
      <dc:date>2015-06-04T07:18:09Z</dc:date>
    </item>
    <item>
      <title>Re: IF Condition - Like Operator</title>
      <link>https://community.qlik.com/t5/QlikView/IF-Condition-Like-Operator/m-p/906620#M314985</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes by mistake I typed If in the expression, otherwise it works.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Jun 2015 07:21:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/IF-Condition-Like-Operator/m-p/906620#M314985</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2015-06-04T07:21:51Z</dc:date>
    </item>
    <item>
      <title>Re: IF Condition - Like Operator</title>
      <link>https://community.qlik.com/t5/QlikView/IF-Condition-Like-Operator/m-p/906621#M314986</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok ramasamy.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Jun 2015 07:50:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/IF-Condition-Like-Operator/m-p/906621#M314986</guid>
      <dc:creator>nihhalmca</dc:creator>
      <dc:date>2015-06-04T07:50:10Z</dc:date>
    </item>
  </channel>
</rss>

