<?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: number records aggregated on dimension in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/number-records-aggregated-on-dimension/m-p/1139646#M20162</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 12px; background-color: #f2f2f2; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Provide full script..&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 17 Jun 2016 11:11:42 GMT</pubDate>
    <dc:creator>MK_QSL</dc:creator>
    <dc:date>2016-06-17T11:11:42Z</dc:date>
    <item>
      <title>number records aggregated on dimension</title>
      <link>https://community.qlik.com/t5/App-Development/number-records-aggregated-on-dimension/m-p/1139641#M20157</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I got a table INVOICE and I'm selecting 3 fields from this table: ITM_ID_T (item identifier), INV_ID_T (invoice identifier) and I_VALUE as total value for respective INV_ID_T.&lt;BR /&gt;In the data set it may happen 1 ITM_ID_T has associated more than 1 INV_ID_T.&lt;/P&gt;&lt;P&gt;My goal is to get them counted, so I can tell which INV_ID_T was added as the first one.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I will appreciate any help.&lt;BR /&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jun 2016 09:51:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/number-records-aggregated-on-dimension/m-p/1139641#M20157</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-06-17T09:51:57Z</dc:date>
    </item>
    <item>
      <title>Re: number records aggregated on dimension</title>
      <link>https://community.qlik.com/t5/App-Development/number-records-aggregated-on-dimension/m-p/1139642#M20158</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Input:&lt;/P&gt;&lt;P&gt;LOAD ITM_ID_T, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; INV_ID_T&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;[itm on inv.xlsx]&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is Sheet1);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Left Join (Input)&lt;/P&gt;&lt;P&gt;Load &lt;/P&gt;&lt;P&gt;&amp;nbsp; ITM_ID_T,&lt;/P&gt;&lt;P&gt;&amp;nbsp; COUNT(DISTINCT INV_ID_T) as [total count INV in ITM]&lt;/P&gt;&lt;P&gt;Resident Input&lt;/P&gt;&lt;P&gt;Group By ITM_ID_T;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Left Join (Input)&lt;/P&gt;&lt;P&gt;Load ITM_ID_T, INV_ID_T, AutoNumber(ITM_ID_T &amp;amp; '|' &amp;amp; INV_ID_T, ITM_ID_T) as [running count INV in ITM] Resident Input&lt;/P&gt;&lt;P&gt;Order By ITM_ID_T, INV_ID_T&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jun 2016 10:01:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/number-records-aggregated-on-dimension/m-p/1139642#M20158</guid>
      <dc:creator>MK_QSL</dc:creator>
      <dc:date>2016-06-17T10:01:16Z</dc:date>
    </item>
    <item>
      <title>Re: number records aggregated on dimension</title>
      <link>https://community.qlik.com/t5/App-Development/number-records-aggregated-on-dimension/m-p/1139643#M20159</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;Thanks for quick reply. The file I attached it's just an overview. I'm using SQL query to get data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My current code looks like below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;SELECT&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp; V_INVOICE.ITM_ID_T&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;, V_INVOICE.INV_ID_T&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;FROM&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp; V_INVOICE&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Could you help me adjust it ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jun 2016 10:19:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/number-records-aggregated-on-dimension/m-p/1139643#M20159</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-06-17T10:19:06Z</dc:date>
    </item>
    <item>
      <title>Re: number records aggregated on dimension</title>
      <link>https://community.qlik.com/t5/App-Development/number-records-aggregated-on-dimension/m-p/1139644#M20160</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;Input:&lt;/P&gt;&lt;P style="padding: 0 0 0 30px; font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: 'courier new', courier;"&gt;SELECT&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding: 0 0 0 30px; font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: 'courier new', courier;"&gt;&amp;nbsp; &lt;SPAN style="color: #3d3d3d; font-family: 'courier new', courier; font-size: 12px; background-color: #f2f2f2;"&gt;V_INVOICE.ITM_ID_T&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding: 0 0 0 30px; font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: 'courier new', courier;"&gt;, V_INVOICE.INV_ID_T&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding: 0 0 0 30px; font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: 'courier new', courier;"&gt;FROM&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding: 0 0 0 30px; font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: 'courier new', courier;"&gt;&amp;nbsp; V_INVOICE&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt; Left Join (Input)&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;Load&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;&amp;nbsp; &lt;SPAN style="color: #3d3d3d; font-family: 'courier new', courier; font-size: 12px; background-color: #f2f2f2;"&gt;V_INVOICE.ITM_ID_T&lt;/SPAN&gt;,&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;&amp;nbsp; COUNT(DISTINCT &lt;SPAN style="color: #3d3d3d; font-family: 'courier new', courier; font-size: 12px; background-color: #f2f2f2;"&gt;V_INVOICE.INV_ID_T&lt;/SPAN&gt;) as [total count INV in ITM]&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;Resident Input&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;Group By &lt;SPAN style="color: #3d3d3d; font-family: 'courier new', courier; font-size: 12px; background-color: #f2f2f2;"&gt;V_INVOICE.ITM_ID_T&lt;/SPAN&gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;Left Join (Input)&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;Load &lt;SPAN style="color: #3d3d3d; font-family: 'courier new', courier; font-size: 12px; background-color: #f2f2f2;"&gt;V_INVOICE.ITM_ID_T&lt;/SPAN&gt;, &lt;SPAN style="color: #3d3d3d; font-family: 'courier new', courier; font-size: 12px; background-color: #f2f2f2;"&gt;V_INVOICE.INV_ID_T&lt;/SPAN&gt;, AutoNumber(&lt;SPAN style="color: #3d3d3d; font-family: 'courier new', courier; font-size: 12px; background-color: #f2f2f2;"&gt;V_INVOICE.ITM_ID_T&lt;/SPAN&gt;&amp;amp; '|' &amp;amp; &lt;SPAN style="color: #3d3d3d; font-family: 'courier new', courier; font-size: 12px; background-color: #f2f2f2;"&gt;V_INVOICE.INV_ID_T&lt;/SPAN&gt;, &lt;SPAN style="color: #3d3d3d; font-family: 'courier new', courier; font-size: 12px; background-color: #f2f2f2;"&gt;V_INVOICE.ITM_ID_T&lt;/SPAN&gt;) as [running count INV in ITM] Resident Input&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;Order By &lt;SPAN style="color: #3d3d3d; font-family: 'courier new', courier; font-size: 12px; background-color: #f2f2f2;"&gt;V_INVOICE.ITM_ID_T&lt;/SPAN&gt;, &lt;SPAN style="color: #3d3d3d; font-family: 'courier new', courier; font-size: 12px; background-color: #f2f2f2;"&gt;V_INVOICE.INV_ID_T;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jun 2016 10:48:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/number-records-aggregated-on-dimension/m-p/1139644#M20160</guid>
      <dc:creator>MK_QSL</dc:creator>
      <dc:date>2016-06-17T10:48:28Z</dc:date>
    </item>
    <item>
      <title>Re: number records aggregated on dimension</title>
      <link>https://community.qlik.com/t5/App-Development/number-records-aggregated-on-dimension/m-p/1139645#M20161</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't want to bother you too much but I got an error with the 2nd left join "Table not found"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;just line above you pasted here I added this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LIB CONNECT TO 'my_lib_data';&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;STRONG&gt; SQL&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Input:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;do you have any idea how to fix it?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jun 2016 11:01:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/number-records-aggregated-on-dimension/m-p/1139645#M20161</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-06-17T11:01:02Z</dc:date>
    </item>
    <item>
      <title>Re: number records aggregated on dimension</title>
      <link>https://community.qlik.com/t5/App-Development/number-records-aggregated-on-dimension/m-p/1139646#M20162</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 12px; background-color: #f2f2f2; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Provide full script..&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jun 2016 11:11:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/number-records-aggregated-on-dimension/m-p/1139646#M20162</guid>
      <dc:creator>MK_QSL</dc:creator>
      <dc:date>2016-06-17T11:11:42Z</dc:date>
    </item>
    <item>
      <title>Re: number records aggregated on dimension</title>
      <link>https://community.qlik.com/t5/App-Development/number-records-aggregated-on-dimension/m-p/1139647#M20163</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE _modifiedtitle="true" class="jive_text_macro jive_macro_quote"&gt;
&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;LIB CONNECT TO 'itb data';&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;Input:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;SQL&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;SELECT&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp; V_INVOICE.ITM_ID_T&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;, V_INVOICE.INV_ID_T&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;FROM&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp; V_INVOICE&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt; &lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;Left Join (Input)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;Load&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp; V_INVOICE.ITM_ID_T,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp; COUNT(DISTINCT V_INVOICE.INV_ID_T) as [total count INV in ITM]&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;Resident Input&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;Group By V_INVOICE.ITM_ID_T;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt; &lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt; &lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;Left Join (Input)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;Load V_INVOICE.ITM_ID_T, V_INVOICE.INV_ID_T, AutoNumber(V_INVOICE.ITM_ID_T&amp;amp; '|' &amp;amp; V_INVOICE.INV_ID_T, V_INVOICE.ITM_ID_T) as [running count INV in ITM] Resident Input&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;Order By V_INVOICE.ITM_ID_T, V_INVOICE.INV_ID_T;&lt;/SPAN&gt;&lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;&lt;BR /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jun 2016 11:19:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/number-records-aggregated-on-dimension/m-p/1139647#M20163</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-06-17T11:19:39Z</dc:date>
    </item>
    <item>
      <title>Re: number records aggregated on dimension</title>
      <link>https://community.qlik.com/t5/App-Development/number-records-aggregated-on-dimension/m-p/1139648#M20164</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You need proper Input&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: 'courier new', courier;"&gt;SQL&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: 'courier new', courier;"&gt;SELECT&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: 'courier new', courier;"&gt;&amp;nbsp; V_INVOICE.ITM_ID_T&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: 'courier new', courier;"&gt;, V_INVOICE.INV_ID_T&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: 'courier new', courier;"&gt;FROM&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: 'courier new', courier;"&gt;&amp;nbsp; V_INVOICE&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: 'courier new', courier;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: 'courier new', courier;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: 'courier new', courier;"&gt;This looks incomplete...&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jun 2016 12:06:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/number-records-aggregated-on-dimension/m-p/1139648#M20164</guid>
      <dc:creator>MK_QSL</dc:creator>
      <dc:date>2016-06-17T12:06:22Z</dc:date>
    </item>
    <item>
      <title>Re: number records aggregated on dimension</title>
      <link>https://community.qlik.com/t5/App-Development/number-records-aggregated-on-dimension/m-p/1139649#M20165</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well, for start I need only these 2 fields and I'm not using the filtering.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jun 2016 12:15:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/number-records-aggregated-on-dimension/m-p/1139649#M20165</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-06-17T12:15:30Z</dc:date>
    </item>
    <item>
      <title>Re: number records aggregated on dimension</title>
      <link>https://community.qlik.com/t5/App-Development/number-records-aggregated-on-dimension/m-p/1139650#M20166</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try to use debug of script and let me know where exactly you are getting error&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jun 2016 12:28:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/number-records-aggregated-on-dimension/m-p/1139650#M20166</guid>
      <dc:creator>MK_QSL</dc:creator>
      <dc:date>2016-06-17T12:28:38Z</dc:date>
    </item>
  </channel>
</rss>

