<?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: LIKE Operator in LOAD Script in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/LIKE-Operator-in-LOAD-Script/m-p/754236#M666383</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;You can do one thing .&lt;/P&gt;&lt;P&gt;When you are creating variable that time use * to concat it&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;like your variable like&lt;/P&gt;&lt;P&gt; &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Let vR1 = '&lt;STRONG&gt;*&lt;/STRONG&gt;Name&lt;STRONG&gt;*&lt;/STRONG&gt;';&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 02 Dec 2014 15:29:57 GMT</pubDate>
    <dc:creator>PrashantSangle</dc:creator>
    <dc:date>2014-12-02T15:29:57Z</dc:date>
    <item>
      <title>LIKE Operator in LOAD Script</title>
      <link>https://community.qlik.com/t5/QlikView/LIKE-Operator-in-LOAD-Script/m-p/754231#M666378</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am trying to filter the List Box with some words inside it and wants to use Variable and also need to use '*'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WHERE [Chain] LIKE '*(vR1)*';&amp;nbsp; ---this is working when i use variable. Note: i need to use variable&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Dec 2014 23:14:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/LIKE-Operator-in-LOAD-Script/m-p/754231#M666378</guid>
      <dc:creator>bkn</dc:creator>
      <dc:date>2014-12-01T23:14:05Z</dc:date>
    </item>
    <item>
      <title>Re: LIKE Operator in LOAD Script</title>
      <link>https://community.qlik.com/t5/QlikView/LIKE-Operator-in-LOAD-Script/m-p/754232#M666379</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="background-color: rgba(255, 255, 255, 0);"&gt;WHERE [Chain] LIKE '*$(vR1)*';&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Dec 2014 00:20:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/LIKE-Operator-in-LOAD-Script/m-p/754232#M666379</guid>
      <dc:creator>MarcoWedel</dc:creator>
      <dc:date>2014-12-02T00:20:17Z</dc:date>
    </item>
    <item>
      <title>Re: LIKE Operator in LOAD Script</title>
      <link>https://community.qlik.com/t5/QlikView/LIKE-Operator-in-LOAD-Script/m-p/754233#M666380</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Actually its not working when i use variable..&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;"&gt;WHERE [Chain] LIKE '*$(vR1)*';&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Dec 2014 14:57:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/LIKE-Operator-in-LOAD-Script/m-p/754233#M666380</guid>
      <dc:creator>bkn</dc:creator>
      <dc:date>2014-12-02T14:57:21Z</dc:date>
    </item>
    <item>
      <title>Re: LIKE Operator in LOAD Script</title>
      <link>https://community.qlik.com/t5/QlikView/LIKE-Operator-in-LOAD-Script/m-p/754234#M666381</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;It is working in any list box expression properties write&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This are example&lt;/P&gt;&lt;P&gt;Ex:-&lt;/P&gt;&lt;P&gt;1.&amp;nbsp; Let vR1 = 'T';&lt;/P&gt;&lt;P&gt;=if(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;[Chain] &lt;/SPAN&gt;LIKE '*$(vR1)*',&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;[Chain]&lt;/SPAN&gt;)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or in the load script it will be&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. In any load script&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Raw:&lt;/P&gt;&lt;P&gt;LOAD * Inline [&lt;/P&gt;&lt;P&gt;Chain&lt;/P&gt;&lt;P&gt;A&lt;/P&gt;&lt;P&gt;BTT&lt;/P&gt;&lt;P&gt;dddTjh&lt;/P&gt;&lt;P&gt;C&lt;/P&gt;&lt;P&gt;T&lt;/P&gt;&lt;P&gt;R ];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let vR1 = 'T';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;N:&lt;/P&gt;&lt;P&gt;NoConcatenate&lt;/P&gt;&lt;P&gt;LOAD * Resident Raw Where Chain LIKE '*$(vR1)*';&lt;/P&gt;&lt;P&gt;DROP Table Raw;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anand&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Dec 2014 15:06:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/LIKE-Operator-in-LOAD-Script/m-p/754234#M666381</guid>
      <dc:creator>its_anandrjs</dc:creator>
      <dc:date>2014-12-02T15:06:30Z</dc:date>
    </item>
    <item>
      <title>Re: LIKE Operator in LOAD Script</title>
      <link>https://community.qlik.com/t5/QlikView/LIKE-Operator-in-LOAD-Script/m-p/754235#M666382</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anand, Thanks for quick response. When variable vR1 is string, its working fine. But i need to pick the certain name from the list(column) and put it in variable and use that variable to Where clause.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Dec 2014 15:23:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/LIKE-Operator-in-LOAD-Script/m-p/754235#M666382</guid>
      <dc:creator>bkn</dc:creator>
      <dc:date>2014-12-02T15:23:52Z</dc:date>
    </item>
    <item>
      <title>Re: LIKE Operator in LOAD Script</title>
      <link>https://community.qlik.com/t5/QlikView/LIKE-Operator-in-LOAD-Script/m-p/754236#M666383</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;You can do one thing .&lt;/P&gt;&lt;P&gt;When you are creating variable that time use * to concat it&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;like your variable like&lt;/P&gt;&lt;P&gt; &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Let vR1 = '&lt;STRONG&gt;*&lt;/STRONG&gt;Name&lt;STRONG&gt;*&lt;/STRONG&gt;';&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Dec 2014 15:29:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/LIKE-Operator-in-LOAD-Script/m-p/754236#M666383</guid>
      <dc:creator>PrashantSangle</dc:creator>
      <dc:date>2014-12-02T15:29:57Z</dc:date>
    </item>
    <item>
      <title>Re: LIKE Operator in LOAD Script</title>
      <link>https://community.qlik.com/t5/QlikView/LIKE-Operator-in-LOAD-Script/m-p/754237#M666384</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Definitely it will work try to enter the TT string in the variable and load the data &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Raw:&lt;/P&gt;&lt;P&gt;LOAD * Inline [&lt;/P&gt;&lt;P&gt;Chain&lt;/P&gt;&lt;P&gt;A&lt;/P&gt;&lt;P&gt;BTT&lt;/P&gt;&lt;P&gt;dddTjh&lt;/P&gt;&lt;P&gt;C&lt;/P&gt;&lt;P&gt;T&lt;/P&gt;&lt;P&gt;R ];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;let vR1 = 'TT';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;N:&lt;/P&gt;&lt;P&gt;NoConcatenate&lt;/P&gt;&lt;P&gt;LOAD * Resident Raw Where Chain LIKE '*$(vR1)*';&lt;/P&gt;&lt;P&gt;DROP Table Raw;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Dec 2014 15:31:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/LIKE-Operator-in-LOAD-Script/m-p/754237#M666384</guid>
      <dc:creator>its_anandrjs</dc:creator>
      <dc:date>2014-12-02T15:31:49Z</dc:date>
    </item>
    <item>
      <title>Re: LIKE Operator in LOAD Script</title>
      <link>https://community.qlik.com/t5/QlikView/LIKE-Operator-in-LOAD-Script/m-p/754238#M666385</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, this works when we use hardcoded value such as TT in variable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My requirement is to get the value in variable from the Table. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;'NTNAME' is a table which has value like Jack,Ryan,Anand,..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to put the NTNAME inside that variable and use that variable in WHERE Clause.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks. &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Dec 2014 15:39:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/LIKE-Operator-in-LOAD-Script/m-p/754238#M666385</guid>
      <dc:creator>bkn</dc:creator>
      <dc:date>2014-12-02T15:39:06Z</dc:date>
    </item>
    <item>
      <title>Re: LIKE Operator in LOAD Script</title>
      <link>https://community.qlik.com/t5/QlikView/LIKE-Operator-in-LOAD-Script/m-p/754239#M666386</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use &lt;STRONG&gt;WildCard&lt;/STRONG&gt; function&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Dec 2014 04:45:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/LIKE-Operator-in-LOAD-Script/m-p/754239#M666386</guid>
      <dc:creator />
      <dc:date>2014-12-03T04:45:17Z</dc:date>
    </item>
    <item>
      <title>Re: LIKE Operator in LOAD Script</title>
      <link>https://community.qlik.com/t5/QlikView/LIKE-Operator-in-LOAD-Script/m-p/754240#M666387</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not working when using Variable and in LOAD Script&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Dec 2014 20:08:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/LIKE-Operator-in-LOAD-Script/m-p/754240#M666387</guid>
      <dc:creator>bkn</dc:creator>
      <dc:date>2014-12-03T20:08:31Z</dc:date>
    </item>
  </channel>
</rss>

