<?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: No count in load script in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/No-count-in-load-script/m-p/404224#M696068</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for your patience. &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/blush.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Oooh, okay, there are 82 field that don't need a group by. Uiii, I have to try it. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 26 Apr 2013 12:43:50 GMT</pubDate>
    <dc:creator />
    <dc:date>2013-04-26T12:43:50Z</dc:date>
    <item>
      <title>No count in load script</title>
      <link>https://community.qlik.com/t5/QlikView/No-count-in-load-script/m-p/404218#M696062</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello users,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a problem with count in load script. It doesn't work, I think because there is no group by and no resident table. I don't know how to write the right command. The field "Signatur" is in the same table and has field @46.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="39734" class="jive-image-thumbnail jive-image" height="347" onclick="" alt="Count_problem_script.jpg" src="https://community.qlik.com/legacyfs/online/39734_Count_problem_script.jpg" style="height: 347px; width: 754.9426523297491px;" width="755" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Perhaps you can help me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;Inga&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Apr 2013 11:37:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/No-count-in-load-script/m-p/404218#M696062</guid>
      <dc:creator />
      <dc:date>2013-04-26T11:37:03Z</dc:date>
    </item>
    <item>
      <title>Re: No count in load script</title>
      <link>https://community.qlik.com/t5/QlikView/No-count-in-load-script/m-p/404219#M696063</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;All the fields not used in an aggregation function, like count, need to be included in the group by clause at the end of the load statement:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load A, B, count(C), D&lt;/P&gt;&lt;P&gt;from ...somewhere...&lt;/P&gt;&lt;P&gt;group by A,B,D;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Apr 2013 11:39:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/No-count-in-load-script/m-p/404219#M696063</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2013-04-26T11:39:17Z</dc:date>
    </item>
    <item>
      <title>Re: No count in load script</title>
      <link>https://community.qlik.com/t5/QlikView/No-count-in-load-script/m-p/404220#M696064</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;load &lt;/P&gt;&lt;P&gt;signatur,&lt;/P&gt;&lt;P&gt;count(signatur)&lt;/P&gt;&lt;P&gt;resident tablename&lt;/P&gt;&lt;P&gt;group by signatur;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;******************************&lt;/P&gt;&lt;P&gt;or also try this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;load&lt;/P&gt;&lt;P&gt; A&amp;nbsp; ,&amp;nbsp; // field on the basis of it perform count&lt;/P&gt;&lt;P&gt;count(signatur)&lt;/P&gt;&lt;P&gt;resident tablename&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;group by A;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Apr 2013 12:02:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/No-count-in-load-script/m-p/404220#M696064</guid>
      <dc:creator />
      <dc:date>2013-04-26T12:02:59Z</dc:date>
    </item>
    <item>
      <title>Re: No count in load script</title>
      <link>https://community.qlik.com/t5/QlikView/No-count-in-load-script/m-p/404221#M696065</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Gysbert,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think your answer is helpful for many people. But... on the screenshots you can see, that I not often work with SQL and functions. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But... I try... And I'm happy that it would be easy! When I know or better understand the answer, I will never forget it. Here's my nice try:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="39745" class="jive-image-thumbnail jive-image" onclick="" alt="count_gysbert.jpg" src="https://community.qlik.com/legacyfs/online/39745_count_gysbert.jpg" width="450" /&gt;&lt;/P&gt;&lt;P&gt;Looks soooo nice. But doensn't work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Greets,&lt;/P&gt;&lt;P&gt;Inga&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Apr 2013 12:30:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/No-count-in-load-script/m-p/404221#M696065</guid>
      <dc:creator />
      <dc:date>2013-04-26T12:30:23Z</dc:date>
    </item>
    <item>
      <title>Re: No count in load script</title>
      <link>https://community.qlik.com/t5/QlikView/No-count-in-load-script/m-p/404222#M696066</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey Vishwaranjan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;nice, it looks so easy, but it doesn't work. The field "Signatur" with A @46 is in the same table like "Exemplazählung" with A @19.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Perhaps I can make the group by at the end of this table, like I've done it with Gysberts answer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="39746" class="jive-image-thumbnail jive-image" onclick="" alt="count_vishvaranjan.jpg" src="https://community.qlik.com/legacyfs/online/39746_count_vishvaranjan.jpg" width="450" /&gt;&lt;/P&gt;&lt;P&gt;I don't want to give up. :-S&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Greets,&lt;/P&gt;&lt;P&gt;Inga&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Apr 2013 12:33:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/No-count-in-load-script/m-p/404222#M696066</guid>
      <dc:creator />
      <dc:date>2013-04-26T12:33:57Z</dc:date>
    </item>
    <item>
      <title>Re: No count in load script</title>
      <link>https://community.qlik.com/t5/QlikView/No-count-in-load-script/m-p/404223#M696067</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok, let's try that again with a little emphasis this time &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;STRONG&gt;All&lt;/STRONG&gt;&lt;/SPAN&gt; the fields not used in an aggregation function, like count, need to be included in the group by clause at the end of the load statement&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That really means &lt;SPAN style="color: #0000ff;"&gt;&lt;STRONG&gt;all&lt;/STRONG&gt;&lt;/SPAN&gt;. Every field you load that is not used in an aggregation function &lt;SPAN style="color: #0000ff;"&gt;&lt;STRONG&gt;must&lt;/STRONG&gt;&lt;/SPAN&gt; be included in the group by statement. If you load 10 fields and use two fields in aggregation functions that means you should have 8 fields in the group by clause.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Apr 2013 12:34:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/No-count-in-load-script/m-p/404223#M696067</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2013-04-26T12:34:42Z</dc:date>
    </item>
    <item>
      <title>Re: No count in load script</title>
      <link>https://community.qlik.com/t5/QlikView/No-count-in-load-script/m-p/404224#M696068</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for your patience. &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/blush.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Oooh, okay, there are 82 field that don't need a group by. Uiii, I have to try it. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Apr 2013 12:43:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/No-count-in-load-script/m-p/404224#M696068</guid>
      <dc:creator />
      <dc:date>2013-04-26T12:43:50Z</dc:date>
    </item>
    <item>
      <title>Re: No count in load script</title>
      <link>https://community.qlik.com/t5/QlikView/No-count-in-load-script/m-p/404225#M696069</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Okay, it works like you said it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;count(@46) as Exemplarzählung&lt;/P&gt;&lt;P&gt;FROM...&lt;/P&gt;&lt;P&gt;group by @1, @2, @3 ... @83;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you so much!&lt;/P&gt;&lt;P&gt;Inga &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 28 Apr 2013 10:50:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/No-count-in-load-script/m-p/404225#M696069</guid>
      <dc:creator />
      <dc:date>2013-04-28T10:50:31Z</dc:date>
    </item>
  </channel>
</rss>

