<?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: Condition in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Condition/m-p/666443#M242473</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this&lt;/P&gt;&lt;P&gt;If(Sum(C_Count)&amp;gt;0, &lt;/P&gt;&lt;P&gt;&amp;nbsp; if(A_Row_Count = B_Row_Count AND A_Row_Count = C_Count AND C_Count = B_Row_Count,'Matched','Not Matched'),&lt;/P&gt;&lt;P&gt;&amp;nbsp; if(A_Row_Count = B_Row_Count ,'Matched','Not Matched')&lt;/P&gt;&lt;P&gt;) as Count_Status&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;let me know ...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 14 Jul 2014 07:36:26 GMT</pubDate>
    <dc:creator>alexandros17</dc:creator>
    <dc:date>2014-07-14T07:36:26Z</dc:date>
    <item>
      <title>Condition</title>
      <link>https://community.qlik.com/t5/QlikView/Condition/m-p/666442#M242472</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;Have a requirement is that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;creating one field based on condition:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if(A_Row_Count = B_Row_Count AND A_Row_Count = C_Count AND C_Count = B_Row_Count,'Matched','Not Matched') as Count_Status&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But my requirement is that:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if field C_Count have data above condition will work out and show the count_status as Match/Mot Match&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if field C_Count have no data, then it should check only field A_Row_Count &amp;amp; B_Row_Count and show the status as Match/Not Match&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Jul 2014 07:32:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Condition/m-p/666442#M242472</guid>
      <dc:creator>vardhancse</dc:creator>
      <dc:date>2014-07-14T07:32:22Z</dc:date>
    </item>
    <item>
      <title>Re: Condition</title>
      <link>https://community.qlik.com/t5/QlikView/Condition/m-p/666443#M242473</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this&lt;/P&gt;&lt;P&gt;If(Sum(C_Count)&amp;gt;0, &lt;/P&gt;&lt;P&gt;&amp;nbsp; if(A_Row_Count = B_Row_Count AND A_Row_Count = C_Count AND C_Count = B_Row_Count,'Matched','Not Matched'),&lt;/P&gt;&lt;P&gt;&amp;nbsp; if(A_Row_Count = B_Row_Count ,'Matched','Not Matched')&lt;/P&gt;&lt;P&gt;) as Count_Status&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;let me know ...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Jul 2014 07:36:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Condition/m-p/666443#M242473</guid>
      <dc:creator>alexandros17</dc:creator>
      <dc:date>2014-07-14T07:36:26Z</dc:date>
    </item>
    <item>
      <title>Re: Condition</title>
      <link>https://community.qlik.com/t5/QlikView/Condition/m-p/666444#M242474</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try some thing like below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;if(A_Row_Count = B_Row_Count AND if(not is null(C_Count), A_Row_Count = C_Count AND C_Count = B_Row_Count),'Matched','Not Matched') as Count_Status&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Jul 2014 07:37:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Condition/m-p/666444#M242474</guid>
      <dc:creator>sasikanth</dc:creator>
      <dc:date>2014-07-14T07:37:40Z</dc:date>
    </item>
    <item>
      <title>Re: Condition</title>
      <link>https://community.qlik.com/t5/QlikView/Condition/m-p/666445#M242475</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you can check length of C_COUNT or you can use isnull function and based on that modify your if statements. It will have basically 2 ifstatements&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if( len(C_COUNT)=0,&lt;/P&gt;&lt;P&gt;&amp;lt;first if statement)&amp;gt;,&lt;/P&gt;&lt;P&gt;&amp;lt;second if statements&amp;gt;)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Jul 2014 19:22:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Condition/m-p/666445#M242475</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-07-14T19:22:03Z</dc:date>
    </item>
  </channel>
</rss>

