<?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 If Statement help in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/If-Statement-help/m-p/601806#M1106659</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Qlikviewers,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm trying to construct a if statement containing the following codition, below is&amp;nbsp; the condition. Please let me know what's wrong with my statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Global Org =&amp;nbsp; Org1 = 'CD' or 'CM' or 'EI' or ('Risk' and Org2 = CC and IA)&lt;/P&gt;&lt;P&gt;Global Risk= Org1 = 'Risk' and Org 2 = REM, FRM, GRM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if(match(org1='CD','CM','EI','Risk' AND match(Org2='CC','IA'),Global Org, if(match(org1='Risk' and Org2('REM', 'FRM', 'GRM'), Global Risk)) AS group1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 20 Mar 2014 13:55:25 GMT</pubDate>
    <dc:creator />
    <dc:date>2014-03-20T13:55:25Z</dc:date>
    <item>
      <title>If Statement help</title>
      <link>https://community.qlik.com/t5/QlikView/If-Statement-help/m-p/601806#M1106659</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Qlikviewers,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm trying to construct a if statement containing the following codition, below is&amp;nbsp; the condition. Please let me know what's wrong with my statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Global Org =&amp;nbsp; Org1 = 'CD' or 'CM' or 'EI' or ('Risk' and Org2 = CC and IA)&lt;/P&gt;&lt;P&gt;Global Risk= Org1 = 'Risk' and Org 2 = REM, FRM, GRM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if(match(org1='CD','CM','EI','Risk' AND match(Org2='CC','IA'),Global Org, if(match(org1='Risk' and Org2('REM', 'FRM', 'GRM'), Global Risk)) AS group1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Mar 2014 13:55:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/If-Statement-help/m-p/601806#M1106659</guid>
      <dc:creator />
      <dc:date>2014-03-20T13:55:25Z</dc:date>
    </item>
    <item>
      <title>Re: If Statement help</title>
      <link>https://community.qlik.com/t5/QlikView/If-Statement-help/m-p/601807#M1106660</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if(match(org1='CD','CM','EI') or (org1='Risk' AND match(Org2='CC','IA')),Global Org, &lt;/P&gt;&lt;P&gt;if(match(org1='Risk' ) and match(Org2,'REM', 'FRM', 'GRM'), Global Risk)) AS group1&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Mar 2014 13:59:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/If-Statement-help/m-p/601807#M1106660</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2014-03-20T13:59:36Z</dc:date>
    </item>
    <item>
      <title>Re: If Statement help</title>
      <link>https://community.qlik.com/t5/QlikView/If-Statement-help/m-p/601808#M1106661</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;Try this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if(match(org1,'CD','CM','EI','Risk') AND match(Org2,'CC','IA'),Global Org, if(match(org1,'Risk') and Match(Org2,'REM', 'FRM', 'GRM'), Global Risk)) AS group1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Syntax:&lt;/P&gt;&lt;P&gt;Match(expr,expr1,expr2)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Mar 2014 14:01:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/If-Statement-help/m-p/601808#M1106661</guid>
      <dc:creator>PrashantSangle</dc:creator>
      <dc:date>2014-03-20T14:01:29Z</dc:date>
    </item>
    <item>
      <title>Re: If Statement help</title>
      <link>https://community.qlik.com/t5/QlikView/If-Statement-help/m-p/601809#M1106662</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;Write like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;if(match(org1='CD','CM','EI',&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;'Risk'&lt;/SPAN&gt;) AND ( AND match(Org2='CC','IA')),Global Org,&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;if(match(org1='Risk' ) and match(Org2,'REM', 'FRM', 'GRM'), Global Risk)) AS group1&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Thanks &amp;amp; Regards&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Mar 2014 14:11:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/If-Statement-help/m-p/601809#M1106662</guid>
      <dc:creator>its_anandrjs</dc:creator>
      <dc:date>2014-03-20T14:11:27Z</dc:date>
    </item>
  </channel>
</rss>

