<?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: Wildmatch in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Wildmatch/m-p/38473#M780976</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;please post some sample data and your expected result&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 02 Apr 2018 20:42:08 GMT</pubDate>
    <dc:creator>MarcoWedel</dc:creator>
    <dc:date>2018-04-02T20:42:08Z</dc:date>
    <item>
      <title>Wildmatch</title>
      <link>https://community.qlik.com/t5/QlikView/Wildmatch/m-p/38467#M780970</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Can anyone plz explain me the below expression in detail.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=if(WildMatch([Spill Over],'N'),'N','Y') &lt;/P&gt;&lt;P&gt;when i use the above expression i am getting output as Y .but according to wildmatch functioning it has to show N as per my understanding,please clear me in this. &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>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Wildmatch/m-p/38467#M780970</guid>
      <dc:creator>dathathreya</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Wildmatch</title>
      <link>https://community.qlik.com/t5/QlikView/Wildmatch/m-p/38468#M780971</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;
&lt;P&gt;when i use the above expression i am getting output as Y .but according to wildmatch functioning it has to show N as per my understanding&lt;/P&gt;
&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Not always... where are you using this? In the script or front end?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) If this in the script... it will check if Spill Over is N or something else... if it is N, then it will give the value N, for everything else it will give it Y&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) If this is on the front end, where are you using it? table or text box? Basically, if you have both N and Y... WildMatch([Spill Over] will have two values which cannot be evaluated... so the default it to the false statement which is Y.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Apr 2018 00:05:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Wildmatch/m-p/38468#M780971</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2018-04-02T00:05:36Z</dc:date>
    </item>
    <item>
      <title>Re: Wildmatch</title>
      <link>https://community.qlik.com/t5/QlikView/Wildmatch/m-p/38469#M780972</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i am using in backend script and the logic is like if(2018-2019&amp;lt;&amp;gt;2017-2018 and wildmatch(spillover,'N'),'N','Y')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here in spill over fields i have both N and Y .and&amp;nbsp; it is taking only Y .i am not understanding y it is taking only Y as N is the 1st parameter.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Apr 2018 00:11:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Wildmatch/m-p/38469#M780972</guid>
      <dc:creator>dathathreya</dc:creator>
      <dc:date>2018-04-02T00:11:17Z</dc:date>
    </item>
    <item>
      <title>Re: Wildmatch</title>
      <link>https://community.qlik.com/t5/QlikView/Wildmatch/m-p/38470#M780973</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Could it be something related to your first condition?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Apr 2018 00:12:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Wildmatch/m-p/38470#M780973</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2018-04-02T00:12:27Z</dc:date>
    </item>
    <item>
      <title>Re: Wildmatch</title>
      <link>https://community.qlik.com/t5/QlikView/Wildmatch/m-p/38471#M780974</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what it does is first it checks&amp;nbsp; &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;2018-2019&amp;lt;&amp;gt;2017-2018 condition and then checks for second condition only if both are true&amp;nbsp; then&amp;nbsp; N else Y.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Apr 2018 07:13:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Wildmatch/m-p/38471#M780974</guid>
      <dc:creator>poojashribanger</dc:creator>
      <dc:date>2018-04-02T07:13:38Z</dc:date>
    </item>
    <item>
      <title>Re: Wildmatch</title>
      <link>https://community.qlik.com/t5/QlikView/Wildmatch/m-p/38472#M780975</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Instead of if Condition i used pick() function it works.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pick(WildMatch([Spill Over],'N','Y'),'N','Y')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Inline Table :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;load *, &lt;/P&gt;&lt;P&gt;pick(WildMatch([Spill Over],'N','Y'),'N','Y') as New_Spill_Over&lt;/P&gt;&lt;P&gt;Inline [&lt;/P&gt;&lt;P&gt;No,Spill Over&lt;/P&gt;&lt;P&gt;1,N&lt;/P&gt;&lt;P&gt;2,N&lt;/P&gt;&lt;P&gt;3,N&lt;/P&gt;&lt;P&gt;4,Y&lt;/P&gt;&lt;P&gt;5,Y&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Apr 2018 07:48:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Wildmatch/m-p/38472#M780975</guid>
      <dc:creator>vishalarote</dc:creator>
      <dc:date>2018-04-02T07:48:09Z</dc:date>
    </item>
    <item>
      <title>Re: Wildmatch</title>
      <link>https://community.qlik.com/t5/QlikView/Wildmatch/m-p/38473#M780976</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;please post some sample data and your expected result&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Apr 2018 20:42:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Wildmatch/m-p/38473#M780976</guid>
      <dc:creator>MarcoWedel</dc:creator>
      <dc:date>2018-04-02T20:42:08Z</dc:date>
    </item>
  </channel>
</rss>

