<?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 conditional function-help in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/conditional-function-help/m-p/669984#M1082325</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hieeee guys,&lt;/P&gt;&lt;P&gt;Please tell me how to use match ,wildmatch and mixmatch with some example and where they are used in script or on object side..&lt;/P&gt;&lt;P&gt;please explain&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 27 Jun 2014 11:09:30 GMT</pubDate>
    <dc:creator />
    <dc:date>2014-06-27T11:09:30Z</dc:date>
    <item>
      <title>conditional function-help</title>
      <link>https://community.qlik.com/t5/QlikView/conditional-function-help/m-p/669984#M1082325</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hieeee guys,&lt;/P&gt;&lt;P&gt;Please tell me how to use match ,wildmatch and mixmatch with some example and where they are used in script or on object side..&lt;/P&gt;&lt;P&gt;please explain&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Jun 2014 11:09:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/conditional-function-help/m-p/669984#M1082325</guid>
      <dc:creator />
      <dc:date>2014-06-27T11:09:30Z</dc:date>
    </item>
    <item>
      <title>Re: conditional function-help</title>
      <link>https://community.qlik.com/t5/QlikView/conditional-function-help/m-p/669985#M1082326</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Look at the help file. The information you're looking for is available in the help file. Honestly, I kid you not.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Jun 2014 11:15:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/conditional-function-help/m-p/669985#M1082326</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2014-06-27T11:15:21Z</dc:date>
    </item>
    <item>
      <title>Re: conditional function-help</title>
      <link>https://community.qlik.com/t5/QlikView/conditional-function-help/m-p/669986#M1082327</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;All from help&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. &lt;STRONG&gt;Match Function&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P class="syntax"&gt;&lt;A name="kanchor409"&gt;&lt;/A&gt;&lt;A name="match"&gt;&lt;/A&gt;&lt;SPAN class="Bold"&gt;match(&lt;/SPAN&gt;&lt;SPAN class="Italic"&gt; str, expr1 [ , expr2,...exprN ] &lt;/SPAN&gt;&lt;SPAN class="Bold"&gt;)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;The &lt;SPAN class="Bold"&gt;match&lt;/SPAN&gt; function performs a case sensitive comparison.&lt;/P&gt;&lt;P class="example"&gt;Example:&lt;/P&gt;&lt;P&gt;&lt;SPAN class="Code"&gt;match( M, 'Jan','Feb','Mar')&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;returns &lt;SPAN class="Italic"&gt;2&lt;/SPAN&gt; if &lt;SPAN class="Italic"&gt;M&lt;/SPAN&gt; = &lt;SPAN class="Italic"&gt;Feb&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;returns &lt;SPAN class="Italic"&gt;0&lt;/SPAN&gt; if &lt;SPAN class="Italic"&gt;M&lt;/SPAN&gt; = &lt;SPAN class="Italic"&gt;Apr &lt;/SPAN&gt;or&lt;SPAN class="Italic"&gt; jan&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="Italic"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="Italic"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="Italic"&gt;2. &lt;STRONG&gt;WildMatch Function &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="Italic"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="syntax"&gt;&lt;A name="kanchor411"&gt;&lt;/A&gt;&lt;A name="wildmatch"&gt;&lt;/A&gt;&lt;SPAN class="Bold"&gt;wildmatch(&lt;/SPAN&gt;&lt;SPAN class="Italic"&gt; str, expr1 [ , expr2,...exprN ] &lt;/SPAN&gt;&lt;SPAN class="Bold"&gt;)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;The &lt;SPAN class="Bold"&gt;wildmatch&lt;/SPAN&gt; function performs a case insensitive comparison and permits the use of wildcard characters (&lt;SPAN class="Bold"&gt; *&lt;/SPAN&gt; and &lt;SPAN class="Bold"&gt;?&lt;/SPAN&gt;) in the comparison strings.&lt;/P&gt;&lt;P class="example"&gt;Example:&lt;/P&gt;&lt;P&gt;&lt;SPAN class="Code"&gt;wildmatch( M, 'ja*','fe?','mar')&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;returns &lt;SPAN class="Italic"&gt;1&lt;/SPAN&gt; if &lt;SPAN class="Italic"&gt;M&lt;/SPAN&gt; = &lt;SPAN class="Italic"&gt;January&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;returns &lt;SPAN class="Italic"&gt;2 &lt;/SPAN&gt;if &lt;SPAN class="Italic"&gt;M&lt;/SPAN&gt; = &lt;SPAN class="Italic"&gt;fex&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="Italic"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="Italic"&gt;3. &lt;STRONG&gt;MixMatch &lt;STRONG&gt;Function&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="Italic"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="syntax"&gt;&lt;A name="kanchor410"&gt;&lt;/A&gt;&lt;A name="mixmatch"&gt;&lt;/A&gt;&lt;SPAN class="Bold"&gt;mixmatch(&lt;/SPAN&gt;&lt;SPAN class="Italic"&gt; str, expr1 [ , expr2,...exprN ] &lt;/SPAN&gt;&lt;SPAN class="Bold"&gt;)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;The &lt;SPAN class="Bold"&gt;mixmatch&lt;/SPAN&gt; function performs a case insensitive comparison.&lt;/P&gt;&lt;P class="example"&gt;Example:&lt;/P&gt;&lt;P&gt;&lt;SPAN class="Code"&gt;mixmatch( M, 'Jan','Feb','Mar')&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;returns &lt;SPAN class="Italic"&gt;1&lt;/SPAN&gt; if &lt;SPAN class="Italic"&gt;M&lt;/SPAN&gt; = &lt;SPAN class="Italic"&gt;jan&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="Italic"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="Italic"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="Italic"&gt;This will more clear to you.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Jun 2014 11:20:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/conditional-function-help/m-p/669986#M1082327</guid>
      <dc:creator>its_anandrjs</dc:creator>
      <dc:date>2014-06-27T11:20:43Z</dc:date>
    </item>
  </channel>
</rss>

