<?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 Get Chart Row Count in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Get-Chart-Row-Count/m-p/217762#M70945</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Hi can you please help me how to find the no of records displying in a table box object based on various filters.&amp;nbsp; I can able to see the no of records on a status bar, but i want to display that number value in a text object or in the header of the table box object.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i used below two expressions but not giving the right number.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;='No of reccords in the table : ' &amp;amp; COUNT (DISTINCT [CustomerCode])&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;='No of reccords in the table : ' &amp;amp; COUNT (DISTINCT [CustomerCode]&amp;amp;[CustomerTitle]&amp;amp;[FirstName]&amp;amp;[LastName]&amp;amp;[Gender]&amp;amp;[Age]&amp;amp;[MarketingCampaignCode]&amp;amp;[MktgCampaignLongName]&amp;amp;[MarketingDate]&amp;amp;[ResponseCampaignCode]&amp;amp;[RespCampaignLongName]&amp;amp;[ResponseDate]&amp;amp;[CouponReceived]&amp;amp;[ResponseMethod]&amp;amp;[ContactDepartment]&amp;amp;[PA_FlatNumber]&amp;amp;[PA_HouseNumber]&amp;amp;[PA_HouseName]&amp;amp;[PA_StreetName]&amp;amp;[Locality]&amp;amp;[Town]&amp;amp;[PA_Country]&amp;amp;[PA_Zipcode]&amp;amp;[CustomerType]&amp;amp;[PreferredBranch_DaycentreCode]&amp;amp;[Dispenser]&amp;amp;[AppointmentDate]&amp;amp;[AppointmentType]&amp;amp;[TelephoneNo]&amp;amp;[MobilePhoneNo]&amp;amp;[PostcodeSector])&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Its urgent for me....please help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 23 Dec 2011 01:03:08 GMT</pubDate>
    <dc:creator />
    <dc:date>2011-12-23T01:03:08Z</dc:date>
    <item>
      <title>Get Chart Row Count</title>
      <link>https://community.qlik.com/t5/QlikView/Get-Chart-Row-Count/m-p/217755#M70938</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a macro that I use to put a chart's row count in the caption of straight tables. But in the case below it's not correct due to repeated values of this particular chart. Does anyone know how I can get the DISTINCT count of the first dimension in order to display it in the caption?&lt;/P&gt;&lt;P&gt;&lt;IMG alt="error loading image" class="jive-image error-loading-image" src="https://community.qlik.com/legacyfs/online/-3558_sourceID:3558" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Feb 2011 20:51:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Get-Chart-Row-Count/m-p/217755#M70938</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-02-15T20:51:19Z</dc:date>
    </item>
    <item>
      <title>Get Chart Row Count</title>
      <link>https://community.qlik.com/t5/QlikView/Get-Chart-Row-Count/m-p/217756#M70939</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Brian,&lt;/P&gt;&lt;P&gt;Is there anything wrong with using the following expression as a caption?&lt;/P&gt;&lt;P&gt;='Orders On Hold (' &amp;amp; count(distinct SO_NUM) &amp;amp; ')'&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Feb 2011 21:42:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Get-Chart-Row-Count/m-p/217756#M70939</guid>
      <dc:creator>pover</dc:creator>
      <dc:date>2011-02-15T21:42:20Z</dc:date>
    </item>
    <item>
      <title>Get Chart Row Count</title>
      <link>https://community.qlik.com/t5/QlikView/Get-Chart-Row-Count/m-p/217757#M70940</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Unfortunately, that returns the number of distinct orders in the entire data set, not within just this chart (I have an expression with set analysis which limits which orders appear in this chart).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Feb 2011 21:49:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Get-Chart-Row-Count/m-p/217757#M70940</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-02-15T21:49:04Z</dc:date>
    </item>
    <item>
      <title>Get Chart Row Count</title>
      <link>https://community.qlik.com/t5/QlikView/Get-Chart-Row-Count/m-p/217758#M70941</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Brian,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you'd need to repeat the same Set Analysis expression in your count(distinct ...).&lt;/P&gt;&lt;P&gt;cheers,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Feb 2011 21:56:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Get-Chart-Row-Count/m-p/217758#M70941</guid>
      <dc:creator>Oleg_Troyansky</dc:creator>
      <dc:date>2011-02-15T21:56:47Z</dc:date>
    </item>
    <item>
      <title>Get Chart Row Count</title>
      <link>https://community.qlik.com/t5/QlikView/Get-Chart-Row-Count/m-p/217759#M70942</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yeah, I had a feeling it wasn't that easy.&lt;/P&gt;&lt;P&gt;However, you could use the same set analysis in the count as in the expressions or something like the following.&lt;/P&gt;&lt;P&gt;='Orders On Hold (' &amp;amp; count({$&amp;lt;SO_NUM={"=expression1&amp;lt;&amp;gt;0 and expression2&amp;lt;&amp;gt;0"}&amp;gt;} distinct SO_NUM) &amp;amp; ')'&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Feb 2011 22:04:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Get-Chart-Row-Count/m-p/217759#M70942</guid>
      <dc:creator>pover</dc:creator>
      <dc:date>2011-02-15T22:04:10Z</dc:date>
    </item>
    <item>
      <title>Get Chart Row Count</title>
      <link>https://community.qlik.com/t5/QlikView/Get-Chart-Row-Count/m-p/217760#M70943</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That did it, thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Feb 2011 22:34:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Get-Chart-Row-Count/m-p/217760#M70943</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-02-15T22:34:57Z</dc:date>
    </item>
    <item>
      <title>Get Chart Row Count</title>
      <link>https://community.qlik.com/t5/QlikView/Get-Chart-Row-Count/m-p/217761#M70944</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi can you please help me how to find the no of records displying in a table box object based on various filters.&amp;nbsp; I can able to see the no of records on a status bar, but i want to display that number value in a text object or in the header of the table box object. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 18 Dec 2011 11:44:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Get-Chart-Row-Count/m-p/217761#M70944</guid>
      <dc:creator />
      <dc:date>2011-12-18T11:44:42Z</dc:date>
    </item>
    <item>
      <title>Get Chart Row Count</title>
      <link>https://community.qlik.com/t5/QlikView/Get-Chart-Row-Count/m-p/217762#M70945</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Hi can you please help me how to find the no of records displying in a table box object based on various filters.&amp;nbsp; I can able to see the no of records on a status bar, but i want to display that number value in a text object or in the header of the table box object.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i used below two expressions but not giving the right number.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;='No of reccords in the table : ' &amp;amp; COUNT (DISTINCT [CustomerCode])&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;='No of reccords in the table : ' &amp;amp; COUNT (DISTINCT [CustomerCode]&amp;amp;[CustomerTitle]&amp;amp;[FirstName]&amp;amp;[LastName]&amp;amp;[Gender]&amp;amp;[Age]&amp;amp;[MarketingCampaignCode]&amp;amp;[MktgCampaignLongName]&amp;amp;[MarketingDate]&amp;amp;[ResponseCampaignCode]&amp;amp;[RespCampaignLongName]&amp;amp;[ResponseDate]&amp;amp;[CouponReceived]&amp;amp;[ResponseMethod]&amp;amp;[ContactDepartment]&amp;amp;[PA_FlatNumber]&amp;amp;[PA_HouseNumber]&amp;amp;[PA_HouseName]&amp;amp;[PA_StreetName]&amp;amp;[Locality]&amp;amp;[Town]&amp;amp;[PA_Country]&amp;amp;[PA_Zipcode]&amp;amp;[CustomerType]&amp;amp;[PreferredBranch_DaycentreCode]&amp;amp;[Dispenser]&amp;amp;[AppointmentDate]&amp;amp;[AppointmentType]&amp;amp;[TelephoneNo]&amp;amp;[MobilePhoneNo]&amp;amp;[PostcodeSector])&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Its urgent for me....please help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Dec 2011 01:03:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Get-Chart-Row-Count/m-p/217762#M70945</guid>
      <dc:creator />
      <dc:date>2011-12-23T01:03:08Z</dc:date>
    </item>
    <item>
      <title>Get Chart Row Count</title>
      <link>https://community.qlik.com/t5/QlikView/Get-Chart-Row-Count/m-p/217763#M70946</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What happens if you get rid of the distinct?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #636363; font-family: Arial; font-size: 12px; background-color: #ffffff;"&gt;COUNT ([CustomerCode])&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #636363; font-family: Arial; font-size: 12px; background-color: #ffffff;"&gt;Karl&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Dec 2011 16:45:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Get-Chart-Row-Count/m-p/217763#M70946</guid>
      <dc:creator>pover</dc:creator>
      <dc:date>2011-12-23T16:45:59Z</dc:date>
    </item>
    <item>
      <title>Get Chart Row Count</title>
      <link>https://community.qlik.com/t5/QlikView/Get-Chart-Row-Count/m-p/217764#M70947</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Karl &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That's also not giving right number. I would like to know how many records are displayed in table object. It's result I can able to see on status bar when table object is selected.&amp;nbsp; So I want to display in a text box so that user can able to know the count always though table object is not selected. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need some one help on this. Please reply if any one having the solution for it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;PC Rao&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Dec 2011 17:51:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Get-Chart-Row-Count/m-p/217764#M70947</guid>
      <dc:creator />
      <dc:date>2011-12-23T17:51:13Z</dc:date>
    </item>
    <item>
      <title>Get Chart Row Count</title>
      <link>https://community.qlik.com/t5/QlikView/Get-Chart-Row-Count/m-p/217765#M70948</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;PC Rao,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A table box will show 1 row for each unique set of data.&amp;nbsp; In an ideal data table a count() should match the number of rows you have in the tablebox.&amp;nbsp; There is no countTableBox() function.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The issue you are having probably has more to do with the data than QlikView. In these cases do the count and select a small subset of data until the count and the number of rows match.&amp;nbsp; Then select another small subset that doesn't match the count and note the differences until you are able to figure out what inconsistency lies in the data you are using.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm sorry I don't have an easy answer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, Karl&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Dec 2011 18:06:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Get-Chart-Row-Count/m-p/217765#M70948</guid>
      <dc:creator>pover</dc:creator>
      <dc:date>2011-12-23T18:06:59Z</dc:date>
    </item>
  </channel>
</rss>

