<?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 where condition in a script in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/where-condition-in-a-script/m-p/882027#M1013020</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hey guyz please help&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have a field lets say&lt;/P&gt;&lt;P&gt;SEGMENT:&lt;/P&gt;&lt;P&gt;employee&lt;BR /&gt;Mass&lt;/P&gt;&lt;P&gt;Upper Mass&lt;/P&gt;&lt;P&gt;Loyal&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i need to extact this field but in condition to be diffrent then employee and Mass&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can i write it in a script&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 22 Apr 2015 09:54:43 GMT</pubDate>
    <dc:creator>mario-sarkis</dc:creator>
    <dc:date>2015-04-22T09:54:43Z</dc:date>
    <item>
      <title>where condition in a script</title>
      <link>https://community.qlik.com/t5/QlikView/where-condition-in-a-script/m-p/882027#M1013020</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hey guyz please help&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have a field lets say&lt;/P&gt;&lt;P&gt;SEGMENT:&lt;/P&gt;&lt;P&gt;employee&lt;BR /&gt;Mass&lt;/P&gt;&lt;P&gt;Upper Mass&lt;/P&gt;&lt;P&gt;Loyal&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i need to extact this field but in condition to be diffrent then employee and Mass&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can i write it in a script&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Apr 2015 09:54:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/where-condition-in-a-script/m-p/882027#M1013020</guid>
      <dc:creator>mario-sarkis</dc:creator>
      <dc:date>2015-04-22T09:54:43Z</dc:date>
    </item>
    <item>
      <title>Re: where condition in a script</title>
      <link>https://community.qlik.com/t5/QlikView/where-condition-in-a-script/m-p/882028#M1013021</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;Can you explain in details??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Apr 2015 09:56:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/where-condition-in-a-script/m-p/882028#M1013021</guid>
      <dc:creator>PrashantSangle</dc:creator>
      <dc:date>2015-04-22T09:56:53Z</dc:date>
    </item>
    <item>
      <title>Re: where condition in a script</title>
      <link>https://community.qlik.com/t5/QlikView/where-condition-in-a-script/m-p/882029#M1013022</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&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;FROM DataSource&lt;/P&gt;&lt;P&gt;WHERE NOT WildMatch(SEGMENT, '&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;employee&lt;/SPAN&gt;', 'Mass');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps you.&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>Wed, 22 Apr 2015 09:59:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/where-condition-in-a-script/m-p/882029#M1013022</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2015-04-22T09:59:13Z</dc:date>
    </item>
    <item>
      <title>Re: where condition in a script</title>
      <link>https://community.qlik.com/t5/QlikView/where-condition-in-a-script/m-p/882030#M1013023</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;&lt;/P&gt;&lt;P&gt;Try like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load * where not WildMatch(SEGMENT,'*employee*','*Mass*');&lt;/P&gt;&lt;P&gt;load * Inline&lt;/P&gt;&lt;P&gt;[&lt;/P&gt;&lt;P&gt;SEGMENT&lt;/P&gt;&lt;P&gt;employee&lt;/P&gt;&lt;P&gt;Mass&lt;/P&gt;&lt;P&gt;Upper Mass&lt;/P&gt;&lt;P&gt;Loyal&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&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, 22 Apr 2015 10:00:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/where-condition-in-a-script/m-p/882030#M1013023</guid>
      <dc:creator>ashfaq_haseeb</dc:creator>
      <dc:date>2015-04-22T10:00:21Z</dc:date>
    </item>
    <item>
      <title>Re: where condition in a script</title>
      <link>https://community.qlik.com/t5/QlikView/where-condition-in-a-script/m-p/882031#M1013024</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;SEGMENT:&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Load employee&lt;SPAN style="line-height: 19.5px;"&gt; from tablename where &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;employee&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt; &amp;lt;&amp;gt;'Mass'&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Apr 2015 10:00:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/where-condition-in-a-script/m-p/882031#M1013024</guid>
      <dc:creator />
      <dc:date>2015-04-22T10:00:55Z</dc:date>
    </item>
  </channel>
</rss>

