<?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 Criteria select in a script with special characters '&amp;lt;' in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Criteria-select-in-a-script-with-special-characters-lt/m-p/1563422#M597568</link>
    <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;In a Xls file the possible value of a field is '&amp;lt;---&amp;gt;' and I have to select only rows whith this value.&lt;/P&gt;&lt;P&gt;I wrote my script like this:&lt;/P&gt;&lt;P&gt;Offers_Diffus_tmp:&lt;BR /&gt;LOAD DateOffre,&lt;BR /&gt;Référence,&lt;BR /&gt;Marque,&lt;BR /&gt;Famille,&lt;BR /&gt;Produit,&lt;BR /&gt;Quantité,&lt;BR /&gt;[Prix de base],&lt;BR /&gt;[Prix client],&lt;BR /&gt;[Prix négoce],&lt;BR /&gt;[Prix total],&lt;BR /&gt;Client&lt;BR /&gt;FROM&lt;BR /&gt;$(vOffers_Diffus)&lt;BR /&gt;(ooxml, embedded labels)&lt;BR /&gt;where Référence = '&amp;lt;---&amp;gt;';&lt;/P&gt;&lt;P&gt;&lt;SPAN class="tlid-translation translation"&gt;&lt;SPAN&gt;But no line is loaded.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="tlid-translation translation"&gt;&lt;SPAN&gt;Could you help me please ?&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 01 Apr 2019 11:11:46 GMT</pubDate>
    <dc:creator>pperrochaud</dc:creator>
    <dc:date>2019-04-01T11:11:46Z</dc:date>
    <item>
      <title>Criteria select in a script with special characters '&lt;'</title>
      <link>https://community.qlik.com/t5/QlikView/Criteria-select-in-a-script-with-special-characters-lt/m-p/1563422#M597568</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;In a Xls file the possible value of a field is '&amp;lt;---&amp;gt;' and I have to select only rows whith this value.&lt;/P&gt;&lt;P&gt;I wrote my script like this:&lt;/P&gt;&lt;P&gt;Offers_Diffus_tmp:&lt;BR /&gt;LOAD DateOffre,&lt;BR /&gt;Référence,&lt;BR /&gt;Marque,&lt;BR /&gt;Famille,&lt;BR /&gt;Produit,&lt;BR /&gt;Quantité,&lt;BR /&gt;[Prix de base],&lt;BR /&gt;[Prix client],&lt;BR /&gt;[Prix négoce],&lt;BR /&gt;[Prix total],&lt;BR /&gt;Client&lt;BR /&gt;FROM&lt;BR /&gt;$(vOffers_Diffus)&lt;BR /&gt;(ooxml, embedded labels)&lt;BR /&gt;where Référence = '&amp;lt;---&amp;gt;';&lt;/P&gt;&lt;P&gt;&lt;SPAN class="tlid-translation translation"&gt;&lt;SPAN&gt;But no line is loaded.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="tlid-translation translation"&gt;&lt;SPAN&gt;Could you help me please ?&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 01 Apr 2019 11:11:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Criteria-select-in-a-script-with-special-characters-lt/m-p/1563422#M597568</guid>
      <dc:creator>pperrochaud</dc:creator>
      <dc:date>2019-04-01T11:11:46Z</dc:date>
    </item>
    <item>
      <title>Re: Criteria select in a script with special characters '&lt;'</title>
      <link>https://community.qlik.com/t5/QlikView/Criteria-select-in-a-script-with-special-characters-lt/m-p/1563434#M597569</link>
      <description>&lt;P&gt;May be try this&lt;/P&gt;&lt;PRE&gt;Where Trim(Référence) = '&amp;lt;---&amp;gt;';&lt;/PRE&gt;&lt;P&gt;or this&lt;/P&gt;&lt;PRE&gt;Where WildMatch(Référence, '*&amp;lt;---&amp;gt;*');&lt;/PRE&gt;</description>
      <pubDate>Mon, 01 Apr 2019 11:34:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Criteria-select-in-a-script-with-special-characters-lt/m-p/1563434#M597569</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2019-04-01T11:34:59Z</dc:date>
    </item>
    <item>
      <title>Re: Criteria select in a script with special characters '&lt;'</title>
      <link>https://community.qlik.com/t5/QlikView/Criteria-select-in-a-script-with-special-characters-lt/m-p/1563442#M597570</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Try below:&lt;/P&gt;&lt;P&gt;Let vWildChar=chr(60)&amp;amp;'*';&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Offers_Diffus_tmp:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;LOAD DateOffre,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Référence,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Marque,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Famille,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Produit,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Quantité,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[Prix de base],&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[Prix client],&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[Prix négoce],&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[Prix total],&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Client&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;FROM&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;$(vOffers_Diffus)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;(ooxml, embedded labels)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;where where WildMatch(Référence,'$(vWild)');&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Hope it helps.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;-amrinder&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 01 Apr 2019 11:54:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Criteria-select-in-a-script-with-special-characters-lt/m-p/1563442#M597570</guid>
      <dc:creator>amrinder</dc:creator>
      <dc:date>2019-04-01T11:54:46Z</dc:date>
    </item>
    <item>
      <title>Re: Criteria select in a script with special characters '&lt;'</title>
      <link>https://community.qlik.com/t5/QlikView/Criteria-select-in-a-script-with-special-characters-lt/m-p/1563445#M597571</link>
      <description>Sorry I passed wrong variable name in where clause please correct it:&lt;BR /&gt;&lt;BR /&gt;Try below:&lt;BR /&gt;&lt;BR /&gt;Let vWildChar=chr(60)&amp;amp;'*';&lt;BR /&gt;&lt;BR /&gt;Offers_Diffus_tmp:&lt;BR /&gt;LOAD DateOffre,&lt;BR /&gt;Référence,&lt;BR /&gt;Marque,&lt;BR /&gt;Famille,&lt;BR /&gt;Produit,&lt;BR /&gt;Quantité,&lt;BR /&gt;[Prix de base],&lt;BR /&gt;[Prix client],&lt;BR /&gt;[Prix négoce],&lt;BR /&gt;[Prix total],&lt;BR /&gt;Client&lt;BR /&gt;FROM&lt;BR /&gt;$(vOffers_Diffus)&lt;BR /&gt;(ooxml, embedded labels)&lt;BR /&gt;where where WildMatch(Référence,'$(vWildChar)');&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Amrinder&lt;BR /&gt;</description>
      <pubDate>Mon, 01 Apr 2019 11:59:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Criteria-select-in-a-script-with-special-characters-lt/m-p/1563445#M597571</guid>
      <dc:creator>amrinder</dc:creator>
      <dc:date>2019-04-01T11:59:30Z</dc:date>
    </item>
    <item>
      <title>Re: Criteria select in a script with special characters '&lt;'</title>
      <link>https://community.qlik.com/t5/QlikView/Criteria-select-in-a-script-with-special-characters-lt/m-p/1563451#M597572</link>
      <description>Thanks It's works.</description>
      <pubDate>Mon, 01 Apr 2019 12:17:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Criteria-select-in-a-script-with-special-characters-lt/m-p/1563451#M597572</guid>
      <dc:creator>pperrochaud</dc:creator>
      <dc:date>2019-04-01T12:17:21Z</dc:date>
    </item>
  </channel>
</rss>

