<?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: condition in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/condition/m-p/1236563#M874559</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;TRY THIS&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;Select *&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;From xxxxxxx&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;Where lEAD&amp;nbsp; IN ( 'abc*',ABC*');&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;or you can do it in the preceding load&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;LOAD *&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;Where Match(Lead, 'abc*','ABC*');&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;Select *&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;FROM xxxxxxx;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 11 Nov 2016 10:05:55 GMT</pubDate>
    <dc:creator>Chanty4u</dc:creator>
    <dc:date>2016-11-11T10:05:55Z</dc:date>
    <item>
      <title>condition</title>
      <link>https://community.qlik.com/t5/QlikView/condition/m-p/1236560#M874556</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;there is a field by name Lead&amp;nbsp;&amp;nbsp; which has the following content &lt;/P&gt;&lt;P&gt;Lead:&lt;/P&gt;&lt;P&gt;abc_dp&lt;/P&gt;&lt;P&gt;abc_dp1&lt;/P&gt;&lt;P&gt;ABC_dp&lt;/P&gt;&lt;P&gt;ABC_WE&lt;/P&gt;&lt;P&gt;Yzx_r&lt;/P&gt;&lt;P&gt;art&lt;/P&gt;&lt;P&gt;bed&lt;/P&gt;&lt;P&gt;sem&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;i want only those which start from abcor ABC content only &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;to this iam tying to apply this condition &lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;where Lead:='ABC';&amp;nbsp;&amp;nbsp;&amp;nbsp; after loading this i dont see any content . can someone try to help me out with this &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/condition/m-p/1236560#M874556</guid>
      <dc:creator>smilingjohn</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: condition</title>
      <link>https://community.qlik.com/t5/QlikView/condition/m-p/1236561#M874557</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello!&lt;/P&gt;&lt;P&gt;Try using left() and&amp;nbsp; trim() functions.&lt;/P&gt;&lt;P&gt;"...Where Left(trim(Lead),3) = 'ABC' or Left(trim(Lead),3) = 'abc'"&lt;/P&gt;&lt;P&gt;or&amp;nbsp; with match() function:&lt;/P&gt;&lt;P&gt;"...Where Match(Left(trim(Lead),3),'ABC','abc') "&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Nov 2016 10:04:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/condition/m-p/1236561#M874557</guid>
      <dc:creator>asgardd2</dc:creator>
      <dc:date>2016-11-11T10:04:29Z</dc:date>
    </item>
    <item>
      <title>Re: condition</title>
      <link>https://community.qlik.com/t5/QlikView/condition/m-p/1236562#M874558</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi John,&lt;/P&gt;&lt;P&gt;maybe&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;&lt;STRONG style="font-size: 10pt;"&gt;LOAD&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt; * &lt;SPAN style="color: #0000ff;"&gt;Inline&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;[&lt;BR /&gt; Lead:&lt;BR /&gt; abc_dp&lt;BR /&gt; abc_dp1&lt;BR /&gt; ABC_dp&lt;BR /&gt; ABC_WE&lt;BR /&gt; Yzx_r&lt;BR /&gt; art&lt;BR /&gt; bed&lt;BR /&gt; sem&lt;BR /&gt; ]&lt;/SPAN&gt;&lt;BR /&gt; &lt;SPAN style="color: #0000ff;"&gt;Where&lt;/SPAN&gt; &lt;SPAN style="color: #0000ff;"&gt;SubField&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;[Lead:]&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;,'_',1)='ABC'; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;Antonio&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Nov 2016 10:05:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/condition/m-p/1236562#M874558</guid>
      <dc:creator>antoniotiman</dc:creator>
      <dc:date>2016-11-11T10:05:24Z</dc:date>
    </item>
    <item>
      <title>Re: condition</title>
      <link>https://community.qlik.com/t5/QlikView/condition/m-p/1236563#M874559</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;TRY THIS&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;Select *&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;From xxxxxxx&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;Where lEAD&amp;nbsp; IN ( 'abc*',ABC*');&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;or you can do it in the preceding load&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;LOAD *&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;Where Match(Lead, 'abc*','ABC*');&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;Select *&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;FROM xxxxxxx;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Nov 2016 10:05:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/condition/m-p/1236563#M874559</guid>
      <dc:creator>Chanty4u</dc:creator>
      <dc:date>2016-11-11T10:05:55Z</dc:date>
    </item>
    <item>
      <title>Re: condition</title>
      <link>https://community.qlik.com/t5/QlikView/condition/m-p/1236564#M874560</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi John &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;main_table:LOAD * INLINE [&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; lead&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; abc_tp&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; abc_dp1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ABC_dp&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ABC_WE&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; YZX_r&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; art&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; bed&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; sem&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;min_temp:&lt;/P&gt;&lt;P&gt;load lead as lead_ABC Resident main_table where WildMatch( lead,'ABC*');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;excute this&amp;nbsp;&amp;nbsp; you will get field name start with ABC&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Nov 2016 10:14:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/condition/m-p/1236564#M874560</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-11-11T10:14:48Z</dc:date>
    </item>
    <item>
      <title>Re: condition</title>
      <link>https://community.qlik.com/t5/QlikView/condition/m-p/1236565#M874561</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;orelse try in simple&lt;/P&gt;&lt;P&gt;Data:&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; lead&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; abc_tp&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; abc_dp1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ABC_dp&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ABC_WE&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; YZX_r&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; art&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; bed&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; sem&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;]&lt;/P&gt;&lt;P&gt;Where WildMatch(lead,'ABC*');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Result:&lt;IMG alt="lead.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/143645_lead.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Nov 2016 10:19:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/condition/m-p/1236565#M874561</guid>
      <dc:creator>Chanty4u</dc:creator>
      <dc:date>2016-11-11T10:19:44Z</dc:date>
    </item>
    <item>
      <title>Re: condition</title>
      <link>https://community.qlik.com/t5/QlikView/condition/m-p/1236566#M874562</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Also try this,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Lead:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD Lead&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;FROM&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Table.xlsx&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;(ooxml, embedded labels, table is Sheet1)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Where WildMatch(Lead,'ABC*','abc*')&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Nov 2016 10:25:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/condition/m-p/1236566#M874562</guid>
      <dc:creator>susovan</dc:creator>
      <dc:date>2016-11-11T10:25:14Z</dc:date>
    </item>
    <item>
      <title>Re: condition</title>
      <link>https://community.qlik.com/t5/QlikView/condition/m-p/1236567#M874563</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Chanty it works &lt;/P&gt;&lt;P&gt;Cant i make everythins as capital and get the output .?&lt;/P&gt;&lt;P&gt;all small abc_* should appear in capitals letters &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Nov 2016 10:29:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/condition/m-p/1236567#M874563</guid>
      <dc:creator>smilingjohn</dc:creator>
      <dc:date>2016-11-11T10:29:58Z</dc:date>
    </item>
    <item>
      <title>Re: condition</title>
      <link>https://community.qlik.com/t5/QlikView/condition/m-p/1236568#M874564</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;good &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it will work for both &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Nov 2016 10:32:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/condition/m-p/1236568#M874564</guid>
      <dc:creator>Chanty4u</dc:creator>
      <dc:date>2016-11-11T10:32:05Z</dc:date>
    </item>
    <item>
      <title>Re: condition</title>
      <link>https://community.qlik.com/t5/QlikView/condition/m-p/1236569#M874565</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use Captalise () fuction or upper () function before&amp;nbsp; field name &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Nov 2016 10:33:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/condition/m-p/1236569#M874565</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-11-11T10:33:39Z</dc:date>
    </item>
    <item>
      <title>Re: condition</title>
      <link>https://community.qlik.com/t5/QlikView/condition/m-p/1236570#M874566</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;But i see both the capital and small letter in the lead list box , i want to have all the small abc* to convert to capital ABC*&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried like this but it did not work &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Where WildMatch(Capitalize(Lead),'ABC*');&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Nov 2016 10:34:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/condition/m-p/1236570#M874566</guid>
      <dc:creator>smilingjohn</dc:creator>
      <dc:date>2016-11-11T10:34:00Z</dc:date>
    </item>
    <item>
      <title>Re: condition</title>
      <link>https://community.qlik.com/t5/QlikView/condition/m-p/1236571#M874567</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mahesh &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i tried like this but it did not work &lt;/P&gt;&lt;P&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;Where WildMatch(Capitalize(Lead),'ABC*');&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Nov 2016 10:35:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/condition/m-p/1236571#M874567</guid>
      <dc:creator>smilingjohn</dc:creator>
      <dc:date>2016-11-11T10:35:21Z</dc:date>
    </item>
    <item>
      <title>Re: condition</title>
      <link>https://community.qlik.com/t5/QlikView/condition/m-p/1236572#M874568</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;if you need case sensative search then try with match()&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Nov 2016 10:37:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/condition/m-p/1236572#M874568</guid>
      <dc:creator>Chanty4u</dc:creator>
      <dc:date>2016-11-11T10:37:47Z</dc:date>
    </item>
    <item>
      <title>Re: condition</title>
      <link>https://community.qlik.com/t5/QlikView/condition/m-p/1236573#M874569</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;&lt;STRONG style="font-size: 10pt;"&gt;LOAD&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt; &lt;SPAN style="color: #0000ff;"&gt;Upper&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;[Lead:]&lt;/SPAN&gt;) &lt;SPAN style="color: #0000ff;"&gt;as&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;[Lead:]&lt;/SPAN&gt;&amp;nbsp; &lt;SPAN style="color: #0000ff;"&gt;Inline&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;[&lt;BR /&gt; Lead:&lt;BR /&gt; abc_dp&lt;BR /&gt; abc_dp1&lt;BR /&gt; ABC_dp&lt;BR /&gt; ABC_WE&lt;BR /&gt; Yzx_r&lt;BR /&gt; art&lt;BR /&gt; bed&lt;BR /&gt; sem ]&lt;/SPAN&gt;&lt;BR /&gt; &lt;SPAN style="color: #0000ff;"&gt;Where&lt;/SPAN&gt; &lt;SPAN style="color: #0000ff;"&gt;Upper&lt;/SPAN&gt;(&lt;SPAN style="color: #0000ff;"&gt;SubField&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;[Lead:]&lt;/SPAN&gt;,'_',1))='ABC'; &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Nov 2016 10:39:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/condition/m-p/1236573#M874569</guid>
      <dc:creator>antoniotiman</dc:creator>
      <dc:date>2016-11-11T10:39:19Z</dc:date>
    </item>
    <item>
      <title>Re: condition</title>
      <link>https://community.qlik.com/t5/QlikView/condition/m-p/1236574#M874570</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;give a try below&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; lead&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; abc_tp&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; abc_dp1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ABC_dp&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ABC_WE&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; YZX_r&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; art&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; bed&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; sem&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;min_temp:&lt;/P&gt;&lt;P&gt;load upper(lead) as lead_ABC Resident main_table where WildMatch( UPPER(lead),'ABC*');&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Nov 2016 10:40:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/condition/m-p/1236574#M874570</guid>
      <dc:creator>Chanty4u</dc:creator>
      <dc:date>2016-11-11T10:40:25Z</dc:date>
    </item>
  </channel>
</rss>

