<?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: IF Count function - counting one criteria and counting rest of... in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/IF-Count-function-counting-one-criteria-and-counting-rest-of/m-p/908015#M985211</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Try this expression&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If(count({&amp;lt;Marks = {'10'}&amp;gt;} Questions) &amp;gt;= 3 AND count({&amp;lt;Marks={'&amp;gt;6&amp;lt;10'}&amp;gt;}Questions), 'Excellent', 'Good')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 03 Aug 2015 09:26:45 GMT</pubDate>
    <dc:creator>jagan</dc:creator>
    <dc:date>2015-08-03T09:26:45Z</dc:date>
    <item>
      <title>IF Count function - counting one criteria and counting rest of...</title>
      <link>https://community.qlik.com/t5/QlikView/IF-Count-function-counting-one-criteria-and-counting-rest-of/m-p/908012#M985208</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear community,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Good morning and hope you had a good weekend!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a list of questions and the scores scored by different teams. The criteria is below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF Team A has scored 10 marks for at least 3 questions. AND scored at least 7 to 9 marks for the REST OF QUESTIONS - Say Excellent, otherwise Good.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The query I tried is - &lt;SPAN style="color: #0000ff; font-size: 10pt;"&gt;if&lt;/SPAN&gt;&lt;STRONG style=": ; color: #ff0000; font-size: 10pt;"&gt;(&lt;/STRONG&gt;&lt;SPAN style="color: #0000ff; font-size: 10pt;"&gt;count&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;({&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 10pt;"&gt;Marks&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt; = {'10'}&amp;gt;}&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 10pt;"&gt;Questions&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;)&amp;gt;=3 &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 10pt;"&gt;and&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt; c&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 10pt;"&gt;ount&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;({&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 10pt;"&gt;Marks&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt; = {'&amp;gt;=7 &amp;lt;=9'}&amp;gt;}&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 10pt;"&gt;Questions&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;), &lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;'Excellent, 'Good')&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;This didn't work, not sure how to count 'rest of the questions'. I have attached the data and a sample pivot table I am trying to create.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;Please help.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Aug 2015 08:59:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/IF-Count-function-counting-one-criteria-and-counting-rest-of/m-p/908012#M985208</guid>
      <dc:creator>infock12</dc:creator>
      <dc:date>2015-08-03T08:59:42Z</dc:date>
    </item>
    <item>
      <title>Re: IF Count function - counting one criteria and counting rest of...</title>
      <link>https://community.qlik.com/t5/QlikView/IF-Count-function-counting-one-criteria-and-counting-rest-of/m-p/908013#M985209</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How about:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If(Count(If(Marks = 10, Questions)) &amp;gt; 3 And Count(If(Marks &amp;lt;= 6, Questions)) = 0, 'Excellent', 'Good')&lt;/P&gt;&lt;P&gt;OR&lt;/P&gt;&lt;P&gt;If(Count({&amp;lt;Marks = {10}&amp;gt;} Questions) &amp;gt; 3 And Count({&amp;lt;Marks = {"&amp;lt;= 6"}&amp;gt;} Questions) = 0, Excellent', 'Good')&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Aug 2015 09:06:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/IF-Count-function-counting-one-criteria-and-counting-rest-of/m-p/908013#M985209</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2015-08-03T09:06:45Z</dc:date>
    </item>
    <item>
      <title>Re: IF Count function - counting one criteria and counting rest of...</title>
      <link>https://community.qlik.com/t5/QlikView/IF-Count-function-counting-one-criteria-and-counting-rest-of/m-p/908014#M985210</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jonathan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the quick response. I will try it and let you know.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Aug 2015 09:12:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/IF-Count-function-counting-one-criteria-and-counting-rest-of/m-p/908014#M985210</guid>
      <dc:creator>infock12</dc:creator>
      <dc:date>2015-08-03T09:12:27Z</dc:date>
    </item>
    <item>
      <title>Re: IF Count function - counting one criteria and counting rest of...</title>
      <link>https://community.qlik.com/t5/QlikView/IF-Count-function-counting-one-criteria-and-counting-rest-of/m-p/908015#M985211</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Try this expression&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If(count({&amp;lt;Marks = {'10'}&amp;gt;} Questions) &amp;gt;= 3 AND count({&amp;lt;Marks={'&amp;gt;6&amp;lt;10'}&amp;gt;}Questions), 'Excellent', 'Good')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Aug 2015 09:26:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/IF-Count-function-counting-one-criteria-and-counting-rest-of/m-p/908015#M985211</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2015-08-03T09:26:45Z</dc:date>
    </item>
    <item>
      <title>Re: IF Count function - counting one criteria and counting rest of...</title>
      <link>https://community.qlik.com/t5/QlikView/IF-Count-function-counting-one-criteria-and-counting-rest-of/m-p/908016#M985212</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jagan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for that. Your expression is something similar to what was in my question, but unfortunately it is not working. I have one team which have 4 questions with a score of 10, 50 questions with a score of 8 and 3 questions with a score of 2. Your (and mine in my question) expression is giving an output of 'Excellent.' Out of 57 total questions for this team, 3 questions have a score of less than 3 so the output should not be excellent.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, Jonathan's expression works fine. I am yet to write the complete expressions, but so far it works well.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your help again.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Aug 2015 10:44:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/IF-Count-function-counting-one-criteria-and-counting-rest-of/m-p/908016#M985212</guid>
      <dc:creator>infock12</dc:creator>
      <dc:date>2015-08-03T10:44:11Z</dc:date>
    </item>
    <item>
      <title>Re: IF Count function - counting one criteria and counting rest of...</title>
      <link>https://community.qlik.com/t5/QlikView/IF-Count-function-counting-one-criteria-and-counting-rest-of/m-p/908017#M985213</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jonathan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It works well so far, and once I wrote the complete expression, which is quite complicated, I will let you know if any complications. Thanks for your help again!&lt;/P&gt;&lt;P&gt;Karthik&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Aug 2015 10:45:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/IF-Count-function-counting-one-criteria-and-counting-rest-of/m-p/908017#M985213</guid>
      <dc:creator>infock12</dc:creator>
      <dc:date>2015-08-03T10:45:54Z</dc:date>
    </item>
    <item>
      <title>Re: IF Count function - counting one criteria and counting rest of...</title>
      <link>https://community.qlik.com/t5/QlikView/IF-Count-function-counting-one-criteria-and-counting-rest-of/m-p/908018#M985214</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if (count({&amp;lt;Marks = {"10"}&amp;gt;} Questions) &amp;gt;= 3 and (count({&amp;lt;Marks = {"&amp;gt;=7&amp;lt;=9"}&amp;gt;} Questions)- (count(TOTAL&amp;lt;Department,Category&amp;gt; Questions)-count({&amp;lt;Marks = {"10"}&amp;gt;} Questions)))=0 ,'Excellent','Good')&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Aug 2015 13:40:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/IF-Count-function-counting-one-criteria-and-counting-rest-of/m-p/908018#M985214</guid>
      <dc:creator>sasiparupudi1</dc:creator>
      <dc:date>2015-08-03T13:40:40Z</dc:date>
    </item>
    <item>
      <title>Re: IF Count function - counting one criteria and counting rest of...</title>
      <link>https://community.qlik.com/t5/QlikView/IF-Count-function-counting-one-criteria-and-counting-rest-of/m-p/908019#M985215</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That's great, thanks Sasidhar. I will give it a try.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Aug 2015 13:57:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/IF-Count-function-counting-one-criteria-and-counting-rest-of/m-p/908019#M985215</guid>
      <dc:creator>infock12</dc:creator>
      <dc:date>2015-08-03T13:57:26Z</dc:date>
    </item>
    <item>
      <title>Re: IF Count function - counting one criteria and counting rest of...</title>
      <link>https://community.qlik.com/t5/QlikView/IF-Count-function-counting-one-criteria-and-counting-rest-of/m-p/908020#M985216</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;Did you manage to solve your problem?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sasi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Aug 2015 19:54:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/IF-Count-function-counting-one-criteria-and-counting-rest-of/m-p/908020#M985216</guid>
      <dc:creator>sasiparupudi1</dc:creator>
      <dc:date>2015-08-04T19:54:19Z</dc:date>
    </item>
    <item>
      <title>Re: IF Count function - counting one criteria and counting rest of...</title>
      <link>https://community.qlik.com/t5/QlikView/IF-Count-function-counting-one-criteria-and-counting-rest-of/m-p/908021#M985217</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Hi &lt;SPAN style="font-size: 11.6999998092651px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;&lt;A href="https://community.qlik.com/people/jagan"&gt;jagan&lt;/A&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;,&lt;SPAN style="font-size: 11.6999998092651px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;&lt;A href="https://community.qlik.com/people/SasiParupudi1"&gt;SasiParupudi1&lt;/A&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;BR /&gt;I did not understand the &lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;Team A in the question and also &lt;/SPAN&gt;solution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Could any one help me how to use the expression in report(pivot/straight table).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Aug 2015 06:10:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/IF-Count-function-counting-one-criteria-and-counting-rest-of/m-p/908021#M985217</guid>
      <dc:creator>qlikviewwizard</dc:creator>
      <dc:date>2015-08-05T06:10:02Z</dc:date>
    </item>
    <item>
      <title>Re: IF Count function - counting one criteria and counting rest of...</title>
      <link>https://community.qlik.com/t5/QlikView/IF-Count-function-counting-one-criteria-and-counting-rest-of/m-p/908022#M985218</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sasi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried this and all category is showing as 'Good.' I am trying to make sense of the second part in this section of your answer. I would appreciate if you could explain it in lay man's terms.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;((count({&amp;lt;Marks = {"&amp;gt;=7&amp;lt;=9"}&amp;gt;} Questions)- (count(TOTAL&amp;lt;Department,Category&amp;gt; Questions)-count({&amp;lt;Marks = {"10"}&amp;gt;} Questions)))=0)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The first count is counting questions with marks between 7 and 9. (SUBTRACT)&lt;/P&gt;&lt;P&gt;The second part is counting ALL the questions irrespective of the score? SUBTRACT&lt;/P&gt;&lt;P&gt;The third part counts the questions that have a score of 10?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is my understanding right? What if there are no questions with a score of 10, and 80% of questions with 7 to 9 scores? count(TOTAL&amp;lt;Department,Category&amp;gt; Questions) will give 100%, so won't it become 80%-100%?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sorry if I am being naïve but just trying to be clear. Thanks!&lt;/P&gt;&lt;P&gt;Karthik&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Aug 2015 08:39:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/IF-Count-function-counting-one-criteria-and-counting-rest-of/m-p/908022#M985218</guid>
      <dc:creator>infock12</dc:creator>
      <dc:date>2015-08-05T08:39:20Z</dc:date>
    </item>
    <item>
      <title>Re: IF Count function - counting one criteria and counting rest of...</title>
      <link>https://community.qlik.com/t5/QlikView/IF-Count-function-counting-one-criteria-and-counting-rest-of/m-p/908023#M985219</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Qlikviewwizard,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Team here refers to 'Department' in the data. The pivot gives 'Department' on rows and 'Category' on columns.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/95028_pastedImage_0.png" style="max-height: 900px; max-width: 1200px;" /&gt;&lt;/P&gt;&lt;P&gt;Hope this helps!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Aug 2015 08:47:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/IF-Count-function-counting-one-criteria-and-counting-rest-of/m-p/908023#M985219</guid>
      <dc:creator>infock12</dc:creator>
      <dc:date>2015-08-05T08:47:30Z</dc:date>
    </item>
    <item>
      <title>Re: IF Count function - counting one criteria and counting rest of...</title>
      <link>https://community.qlik.com/t5/QlikView/IF-Count-function-counting-one-criteria-and-counting-rest-of/m-p/908024#M985220</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Karthik,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes, Thats what it will do.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As per my understanding, for example,&lt;/P&gt;&lt;P&gt;out of 50 questions&lt;/P&gt;&lt;P&gt;if 3 are 10 marks&lt;/P&gt;&lt;P&gt;47 must have marks between 7 and 9 to be marked as excellent&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so count questions with marks 10 will give 3&lt;/P&gt;&lt;P&gt;total count will give you 50&lt;/P&gt;&lt;P&gt;total marks between 7 and 9 if say are 40&lt;/P&gt;&lt;P&gt;then the 50-40-3=7 which will put that in the good category&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;on the other hand ,if total marks between 7 and 9 returns 47,&lt;/P&gt;&lt;P&gt;50-47-3=0 which will put that in the&amp;nbsp; excellent category.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope my understanding is correct&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sasi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Aug 2015 08:55:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/IF-Count-function-counting-one-criteria-and-counting-rest-of/m-p/908024#M985220</guid>
      <dc:creator>sasiparupudi1</dc:creator>
      <dc:date>2015-08-05T08:55:40Z</dc:date>
    </item>
    <item>
      <title>Re: IF Count function - counting one criteria and counting rest of...</title>
      <link>https://community.qlik.com/t5/QlikView/IF-Count-function-counting-one-criteria-and-counting-rest-of/m-p/908025#M985221</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Sasi, that works!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The below works as well. Looks a little straightforward to me, but there may be something additional in your query that may help. I will let you know if any issues arise.&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 10pt;"&gt;if&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 10pt;"&gt;count&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;({&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 10pt;"&gt;Marks&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt; = {'10'}&amp;gt;}&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 10pt;"&gt;Questions&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;)&amp;gt;=3 &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 10pt;"&gt;and&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 10pt;"&gt;count&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;({&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 10pt;"&gt;Marks&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt; = {'&amp;lt;=6'}&amp;gt;}&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 10pt;"&gt;Questions&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;)=0, 'Excellent', 'Good') &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Aug 2015 09:22:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/IF-Count-function-counting-one-criteria-and-counting-rest-of/m-p/908025#M985221</guid>
      <dc:creator>infock12</dc:creator>
      <dc:date>2015-08-05T09:22:12Z</dc:date>
    </item>
  </channel>
</rss>

