<?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: Passing a variable in wildmatch in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Passing-a-variable-in-wildmatch/m-p/19364#M511287</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That's fine Gysbert. I have had some issues with my excel file. Thanks for your help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 14 Feb 2018 11:24:17 GMT</pubDate>
    <dc:creator>kashjaniqlik</dc:creator>
    <dc:date>2018-02-14T11:24:17Z</dc:date>
    <item>
      <title>Passing a variable in wildmatch</title>
      <link>https://community.qlik.com/t5/QlikView/Passing-a-variable-in-wildmatch/m-p/19358#M511281</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a list of values loaded in a temp table from an excel file. I would like to pass these values to wildmatch function through a variable. Is this possible in Qlikview?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;e.g.&lt;/P&gt;&lt;P&gt;List of Values&lt;/P&gt;&lt;P&gt;ABC&lt;/P&gt;&lt;P&gt;DEF&lt;/P&gt;&lt;P&gt;GEH&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'd like to store these values in a variable and pass that variable (with a complete list) to wildmatch function.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Feb 2018 17:06:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Passing-a-variable-in-wildmatch/m-p/19358#M511281</guid>
      <dc:creator>kashjaniqlik</dc:creator>
      <dc:date>2018-02-13T17:06:12Z</dc:date>
    </item>
    <item>
      <title>Re: Passing a variable in wildmatch</title>
      <link>https://community.qlik.com/t5/QlikView/Passing-a-variable-in-wildmatch/m-p/19359#M511282</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;SET vList = '*ABC*','*DEF*','*GEH*';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Wlidmatch(MyField, $(vList));&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Feb 2018 17:10:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Passing-a-variable-in-wildmatch/m-p/19359#M511282</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2018-02-13T17:10:18Z</dc:date>
    </item>
    <item>
      <title>Re: Passing a variable in wildmatch</title>
      <link>https://community.qlik.com/t5/QlikView/Passing-a-variable-in-wildmatch/m-p/19360#M511283</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Many Thanks Gysbert. This really helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can we move the list to excel and load the values from excel in to the variable please?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Feb 2018 17:23:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Passing-a-variable-in-wildmatch/m-p/19360#M511283</guid>
      <dc:creator>kashjaniqlik</dc:creator>
      <dc:date>2018-02-13T17:23:13Z</dc:date>
    </item>
    <item>
      <title>Re: Passing a variable in wildmatch</title>
      <link>https://community.qlik.com/t5/QlikView/Passing-a-variable-in-wildmatch/m-p/19361#M511284</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes. Load the list from excel and use the concat function to create a list:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;temp:&lt;/P&gt;&lt;P&gt;LOAD concat( chr(39) &amp;amp; MyValue &amp;amp; chr(39) , ',') as List FROM ...excelfile...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LET vList = peek('List',-1,'temp');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DROP TABLE temp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Feb 2018 17:28:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Passing-a-variable-in-wildmatch/m-p/19361#M511284</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2018-02-13T17:28:21Z</dc:date>
    </item>
    <item>
      <title>Re: Passing a variable in wildmatch</title>
      <link>https://community.qlik.com/t5/QlikView/Passing-a-variable-in-wildmatch/m-p/19362#M511285</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks again Gysbert. Almost there - although chr(39) is returning double quotes instead of single quotes and this messes my wildmatch function. any ideas please?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Feb 2018 09:54:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Passing-a-variable-in-wildmatch/m-p/19362#M511285</guid>
      <dc:creator>kashjaniqlik</dc:creator>
      <dc:date>2018-02-14T09:54:21Z</dc:date>
    </item>
    <item>
      <title>Re: Passing a variable in wildmatch</title>
      <link>https://community.qlik.com/t5/QlikView/Passing-a-variable-in-wildmatch/m-p/19363#M511286</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That's not possible. Chr(39) will return a single quote. Chr(34) returns a double quote.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Feb 2018 11:20:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Passing-a-variable-in-wildmatch/m-p/19363#M511286</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2018-02-14T11:20:29Z</dc:date>
    </item>
    <item>
      <title>Re: Passing a variable in wildmatch</title>
      <link>https://community.qlik.com/t5/QlikView/Passing-a-variable-in-wildmatch/m-p/19364#M511287</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That's fine Gysbert. I have had some issues with my excel file. Thanks for your help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Feb 2018 11:24:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Passing-a-variable-in-wildmatch/m-p/19364#M511287</guid>
      <dc:creator>kashjaniqlik</dc:creator>
      <dc:date>2018-02-14T11:24:17Z</dc:date>
    </item>
  </channel>
</rss>

