<?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: Counting customers in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Counting-customers-in-LOAD-Script/m-p/1631448#M47012</link>
    <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/5533"&gt;@Anil_Babu_Samineni&lt;/a&gt;&amp;nbsp; - Why do you need TOTAL &amp;lt;Month&amp;gt; here? I think there is no point of adding TOTAL &amp;lt;Month&amp;gt; when you only have Month as the dimension.&lt;/P&gt;</description>
    <pubDate>Fri, 04 Oct 2019 12:15:36 GMT</pubDate>
    <dc:creator>sunny_talwar</dc:creator>
    <dc:date>2019-10-04T12:15:36Z</dc:date>
    <item>
      <title>Counting customers in LOAD Script</title>
      <link>https://community.qlik.com/t5/App-Development/Counting-customers-in-LOAD-Script/m-p/1631420#M47007</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I'm loading the full table of sales, but I want to create another one to know the number of customers per month.&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Custaccount&lt;/TD&gt;&lt;TD&gt;created_at&lt;/TD&gt;&lt;TD&gt;SalesBOid&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;C000001&lt;/TD&gt;&lt;TD&gt;1/3/2011&lt;/TD&gt;&lt;TD&gt;PV00160319&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;C000002&lt;/TD&gt;&lt;TD&gt;7/4/2011&lt;/TD&gt;&lt;TD&gt;PV00160333&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;C000002&lt;/TD&gt;&lt;TD&gt;31/5/2011&lt;/TD&gt;&lt;TD&gt;PV00160368&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;C000000&lt;/TD&gt;&lt;TD&gt;31/8/2011&lt;/TD&gt;&lt;TD&gt;PV00160936&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;C000002&lt;/TD&gt;&lt;TD&gt;16/9/2011&lt;/TD&gt;&lt;TD&gt;PV00161412&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;C000002&lt;/TD&gt;&lt;TD&gt;19/9/2011&lt;/TD&gt;&lt;TD&gt;PV00161447&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;C000002&lt;/TD&gt;&lt;TD&gt;20/9/2011&lt;/TD&gt;&lt;TD&gt;PV00161459&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and this table&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Month&amp;amp;Year&lt;/TD&gt;&lt;TD&gt;Number customers&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;March-11&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;April-11&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;May-11&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;August-11&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Sept-11&lt;/TD&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank's for your help&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 04 Oct 2019 18:02:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Counting-customers-in-LOAD-Script/m-p/1631420#M47007</guid>
      <dc:creator>ecabanas</dc:creator>
      <dc:date>2019-10-04T18:02:41Z</dc:date>
    </item>
    <item>
      <title>Re: Counting customers</title>
      <link>https://community.qlik.com/t5/App-Development/Counting-customers-in-LOAD-Script/m-p/1631429#M47008</link>
      <description>&lt;P&gt;Do you have a MonthYear field screated in the scipt? If you do, then create a straight table like this&lt;/P&gt;&lt;P&gt;Dimension&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;MonthYear&lt;/LI-CODE&gt;&lt;P&gt;Expression&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Count(DISTINCT Custaccount)&lt;/LI-CODE&gt;</description>
      <pubDate>Fri, 04 Oct 2019 11:27:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Counting-customers-in-LOAD-Script/m-p/1631429#M47008</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2019-10-04T11:27:57Z</dc:date>
    </item>
    <item>
      <title>Re: Counting customers</title>
      <link>https://community.qlik.com/t5/App-Development/Counting-customers-in-LOAD-Script/m-p/1631430#M47009</link>
      <description>&lt;P&gt;Perhaps this?&lt;/P&gt;&lt;P&gt;Month(created_at) as Month&lt;/P&gt;&lt;P&gt;And create table with&lt;/P&gt;&lt;P&gt;Dimension : Month&lt;/P&gt;&lt;P&gt;Expression :&amp;nbsp;&lt;/P&gt;&lt;P&gt;Count(TOTAL &amp;lt;Month&amp;gt;&amp;nbsp;&lt;SPAN&gt;Custaccount)&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 04 Oct 2019 11:28:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Counting-customers-in-LOAD-Script/m-p/1631430#M47009</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2019-10-04T11:28:52Z</dc:date>
    </item>
    <item>
      <title>Re: Counting customers</title>
      <link>https://community.qlik.com/t5/App-Development/Counting-customers-in-LOAD-Script/m-p/1631448#M47012</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/5533"&gt;@Anil_Babu_Samineni&lt;/a&gt;&amp;nbsp; - Why do you need TOTAL &amp;lt;Month&amp;gt; here? I think there is no point of adding TOTAL &amp;lt;Month&amp;gt; when you only have Month as the dimension.&lt;/P&gt;</description>
      <pubDate>Fri, 04 Oct 2019 12:15:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Counting-customers-in-LOAD-Script/m-p/1631448#M47012</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2019-10-04T12:15:36Z</dc:date>
    </item>
    <item>
      <title>Re: Counting customers</title>
      <link>https://community.qlik.com/t5/App-Development/Counting-customers-in-LOAD-Script/m-p/1631452#M47014</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/46628"&gt;@sunny_talwar&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My intention adding TOTAL qualifier is, if customer added another dimension and they need for month based TOTAL count.&lt;/P&gt;</description>
      <pubDate>Fri, 04 Oct 2019 12:26:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Counting-customers-in-LOAD-Script/m-p/1631452#M47014</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2019-10-04T12:26:18Z</dc:date>
    </item>
    <item>
      <title>Re: Counting customers</title>
      <link>https://community.qlik.com/t5/App-Development/Counting-customers-in-LOAD-Script/m-p/1631455#M47015</link>
      <description>&lt;P&gt;Oh, so you are assuming if another dimension is added... but what if they don't want to see the total after adding another dimension... I don't think it is right to assume that when another dimension is added, it should still total by Month. But if that is needed, then you are right.&lt;/P&gt;</description>
      <pubDate>Fri, 04 Oct 2019 12:30:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Counting-customers-in-LOAD-Script/m-p/1631455#M47015</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2019-10-04T12:30:51Z</dc:date>
    </item>
    <item>
      <title>Re: Counting customers</title>
      <link>https://community.qlik.com/t5/App-Development/Counting-customers-in-LOAD-Script/m-p/1631558#M47025</link>
      <description>&lt;P&gt;Hi all&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sorry, maybe I explained bad....I want this new table in load script, to save it in a qvd and use in another app.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank's&lt;/P&gt;</description>
      <pubDate>Fri, 04 Oct 2019 16:38:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Counting-customers-in-LOAD-Script/m-p/1631558#M47025</guid>
      <dc:creator>ecabanas</dc:creator>
      <dc:date>2019-10-04T16:38:42Z</dc:date>
    </item>
  </channel>
</rss>

