<?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: Calcular Quantidade de Registros na Tabela na Maior Dimensão in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Calcular-Quantidade-de-Registros-na-Tabela-na-Maior-Dimens%C3%A3o/m-p/22215#M3744</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Share a sample you are working on and show us what you achieved till now and what you are expecting? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 14 May 2018 15:17:46 GMT</pubDate>
    <dc:creator>vishsaggi</dc:creator>
    <dc:date>2018-05-14T15:17:46Z</dc:date>
    <item>
      <title>Calcular Quantidade de Registros na Tabela na Maior Dimensão</title>
      <link>https://community.qlik.com/t5/QlikView/Calcular-Quantidade-de-Registros-na-Tabela-na-Maior-Dimens%C3%A3o/m-p/22211#M3740</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Boa tarde,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tenho a seguinte dimensão com os possíveis valores abaixo:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt; Faixa de Valor&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;0 até 100&lt;/P&gt;&lt;P&gt;100,01 até 200&lt;/P&gt;&lt;P&gt;200,01 até 300&lt;/P&gt;&lt;P&gt;300,01 Até 9999999&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Eu tenho vários títulos de um determinado cliente que possuem valores diferentes, portanto estão em faixas de valores diferentes, porém a conta deve ser feita considerando o título de maior valor, ou seja, o maior valor do cliente.&lt;/P&gt;&lt;P&gt;Fazendo um exercício simples com a fonte de dados, demonstrando:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Cliente | Título | Valor | Faixa de Valor&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Joao | X01 | 150 | 100,01 até 200&lt;/P&gt;&lt;P&gt;Joao | X02 | 250 |&amp;nbsp; 200,01 até 300&lt;/P&gt;&lt;P&gt;Maria | X03 | 100 | 0 até 100&lt;/P&gt;&lt;P&gt;Cássia | X04 | 290 | 200,01 até 300&lt;/P&gt;&lt;P&gt;Roberto | X05 | 330 | 300,01 Até 9999999&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;O gráfico em tabelas deve mostrar da seguinte forma:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Faixa de Valor | Quantidade de Clientes&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;0 até 100 - 1&amp;nbsp; (Título da Maria, X03)&lt;/P&gt;&lt;P&gt;100,01 até 200 - 0 &lt;/P&gt;&lt;P&gt;200,01 até 300 - 2 (Título do João, X02 e o Título da Cássia, X04)&lt;/P&gt;&lt;P&gt;300,01 Até 9999999 - 1 (Título do Roberto, X05)&lt;/P&gt;&lt;P&gt;Totalizando efetivamente 4 clientes da lista.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Eu usei AGGR para buscar o valor máximo, agrupado por cliente... consigo encontrar, porém na hora de encaixar no gráfico ele sempre calcula 1 em todas as dimensões de faixa de valor que o cliente tiver título.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Exemplo: COUNT(AGGR(MAX(Valor), &lt;STRONG&gt;Cliente, &lt;/STRONG&gt;&lt;STRONG&gt;Faixa de Valor&lt;/STRONG&gt;))&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 May 2018 19:24:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calcular-Quantidade-de-Registros-na-Tabela-na-Maior-Dimens%C3%A3o/m-p/22211#M3740</guid>
      <dc:creator>jftalmeida</dc:creator>
      <dc:date>2018-05-11T19:24:40Z</dc:date>
    </item>
    <item>
      <title>Re: Calcular Quantidade de Registros na Tabela na Maior Dimensão</title>
      <link>https://community.qlik.com/t5/QlikView/Calcular-Quantidade-de-Registros-na-Tabela-na-Maior-Dimens%C3%A3o/m-p/22212#M3741</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;One of doing this is like &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RangeVal:&lt;/P&gt;&lt;P&gt;LOAD *, Subfield(ValRange, '|',1) AS Val1,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Subfield(ValRange, '|',2) AS Val2; &lt;/P&gt;&lt;P&gt;LOAD *, Replace(Replace([Value range], 'Up to','|'), 'to', '|') AS ValRange INLINE [&lt;/P&gt;&lt;P&gt;Customer | Title | Value1 | Value range&lt;/P&gt;&lt;P&gt;Joao | X01 | 150 | 100.01 to 200&lt;/P&gt;&lt;P&gt;Joao | X02 | 250 | 200.01 to 300&lt;/P&gt;&lt;P&gt;Maria | X03 | 100 | 0 to 100&lt;/P&gt;&lt;P&gt;Cássia | X04 | 290 | 200.01 to 300&lt;/P&gt;&lt;P&gt;Roberto | X05 | 330 | 300.01 Up to 9999999&lt;/P&gt;&lt;P&gt;] (delimiter is '|');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LEFT JOIN(RangeVal)&lt;/P&gt;&lt;P&gt;RangeVal1:&lt;/P&gt;&lt;P&gt;LOAD Customer,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Max(Value1) AS MaxVal&lt;/P&gt;&lt;P&gt;Resident RangeVal&lt;/P&gt;&lt;P&gt;Group By Customer;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then using your Straight table chart Add&lt;/P&gt;&lt;P&gt;dim: [Value range]&lt;/P&gt;&lt;P&gt;Expr: = Sum(IF(MaxVal &amp;gt;= Val1 AND MaxVal &amp;lt;= Val2, 1, 0)) &amp;amp; ' [' &amp;amp; Concat(Customer &amp;amp; '|' &amp;amp; Title, ',') &amp;amp; ']'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/202203_Capture.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 May 2018 21:39:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calcular-Quantidade-de-Registros-na-Tabela-na-Maior-Dimens%C3%A3o/m-p/22212#M3741</guid>
      <dc:creator>vishsaggi</dc:creator>
      <dc:date>2018-05-11T21:39:38Z</dc:date>
    </item>
    <item>
      <title>Re: Calcular Quantidade de Registros na Tabela na Maior Dimensão</title>
      <link>https://community.qlik.com/t5/QlikView/Calcular-Quantidade-de-Registros-na-Tabela-na-Maior-Dimens%C3%A3o/m-p/22213#M3742</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Or in the script try below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RangeVal:&lt;/P&gt;&lt;P&gt;LOAD *, Subfield(ValRange, '|',1) AS Val1,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Subfield(ValRange, '|',2) AS Val2; &lt;/P&gt;&lt;P&gt;LOAD *, Replace(Replace([Value range], 'Up to','|'), 'to', '|') AS ValRange INLINE [&lt;/P&gt;&lt;P&gt;Customer | Title | Value1 | Value range&lt;/P&gt;&lt;P&gt;Joao | X01 | 150 | 100.01 to 200&lt;/P&gt;&lt;P&gt;Joao | X02 | 250 | 200.01 to 300&lt;/P&gt;&lt;P&gt;Maria | X03 | 100 | 0 to 100&lt;/P&gt;&lt;P&gt;Cássia | X04 | 290 | 200.01 to 300&lt;/P&gt;&lt;P&gt;Roberto | X05 | 330 | 300.01 Up to 9999999&lt;/P&gt;&lt;P&gt;] (delimiter is '|');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LEFT JOIN(RangeVal)&lt;/P&gt;&lt;P&gt;RangeVal1:&lt;/P&gt;&lt;P&gt;LOAD Customer,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Max(Value1) AS MaxVal&lt;/P&gt;&lt;P&gt;Resident RangeVal&lt;/P&gt;&lt;P&gt;Group By Customer;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LEFT JOIN(RangeVal)&lt;/P&gt;&lt;P&gt;FinalRangeVal:&lt;/P&gt;&lt;P&gt;LOAD [Value range], &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Sum(IF(MaxVal &amp;gt;= Val1 AND MaxVal &amp;lt;= Val2, 1, 0)) AS NoOfClients&lt;/P&gt;&lt;P&gt;Resident RangeVal&lt;/P&gt;&lt;P&gt;Group By [Value range];&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 May 2018 21:43:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calcular-Quantidade-de-Registros-na-Tabela-na-Maior-Dimens%C3%A3o/m-p/22213#M3742</guid>
      <dc:creator>vishsaggi</dc:creator>
      <dc:date>2018-05-11T21:43:38Z</dc:date>
    </item>
    <item>
      <title>Re: Calcular Quantidade de Registros na Tabela na Maior Dimensão</title>
      <link>https://community.qlik.com/t5/QlikView/Calcular-Quantidade-de-Registros-na-Tabela-na-Maior-Dimens%C3%A3o/m-p/22214#M3743</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Não é possível fazer dessa forma. Porque o cálculo deve ser dinâmico de acordo com as seleções realizadas pelo usuário.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;O que eu quero dizer é que o group by proposto no script não faz sentido nesse caso, pois o agrupamento limitará sempre a uma data fixa do cliente.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Estou tentando fazer via agregação e um IF na agregação, estou quase chegando lá, algo como se fosse assim:&lt;/P&gt;&lt;P&gt;COUNT(DISTINCT IF(AGGR(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;MAX&lt;/SPAN&gt;( &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Value1 &lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;), &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Customer &lt;/SPAN&gt;, [&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Value range&lt;/SPAN&gt;] ) = &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Value1&lt;/SPAN&gt;,&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Customer&lt;/SPAN&gt;))&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 May 2018 12:03:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calcular-Quantidade-de-Registros-na-Tabela-na-Maior-Dimens%C3%A3o/m-p/22214#M3743</guid>
      <dc:creator>jftalmeida</dc:creator>
      <dc:date>2018-05-14T12:03:02Z</dc:date>
    </item>
    <item>
      <title>Re: Calcular Quantidade de Registros na Tabela na Maior Dimensão</title>
      <link>https://community.qlik.com/t5/QlikView/Calcular-Quantidade-de-Registros-na-Tabela-na-Maior-Dimens%C3%A3o/m-p/22215#M3744</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Share a sample you are working on and show us what you achieved till now and what you are expecting? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 May 2018 15:17:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calcular-Quantidade-de-Registros-na-Tabela-na-Maior-Dimens%C3%A3o/m-p/22215#M3744</guid>
      <dc:creator>vishsaggi</dc:creator>
      <dc:date>2018-05-14T15:17:46Z</dc:date>
    </item>
    <item>
      <title>Re: Calcular Quantidade de Registros na Tabela na Maior Dimensão</title>
      <link>https://community.qlik.com/t5/QlikView/Calcular-Quantidade-de-Registros-na-Tabela-na-Maior-Dimens%C3%A3o/m-p/22216#M3745</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Vou tentar perguntar de forma objetiva:&lt;/P&gt;&lt;P&gt;Como fazer comparação utilizando 2 sintaxes AGGR na expressão e em uma delas desconsiderar a dimensão utilizada na tabela? Ou seja, nesse exemplo preciso desconsiderar a Faixa de Valor em uma expressão AGGR, para comparar Se o &lt;STRONG&gt;Maior Valor Agrupado por Faixa de Valor/Client&lt;/STRONG&gt;e é igual ao &lt;STRONG&gt;Maior Valor do Cliente&lt;/STRONG&gt;, se esse predicado for verdadeiro então conta na expressão.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Exemplo: COUNT( DISTINCT IF( &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;AGGR(&lt;/SPAN&gt;&lt;SPAN style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;MAX&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;( &lt;/SPAN&gt;&lt;SPAN style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Value1 &lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;), &lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13px;"&gt;Customer &lt;/SPAN&gt;, [&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13px;"&gt;Value range&lt;/SPAN&gt;] ) = &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;AGGR(&lt;/SPAN&gt;&lt;SPAN style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;MAX&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;({&amp;lt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;[&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13px;"&gt;Value range&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;]=&lt;/SPAN&gt;&amp;gt;} &lt;/SPAN&gt;&lt;SPAN style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Value1 &lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;), &lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13px;"&gt;Customer &lt;/SPAN&gt;, [&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13px;"&gt;Value range&lt;/SPAN&gt;] ), &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;STRONG&gt;Customer&lt;/STRONG&gt; , NULL())&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Por fim, utilizando a base de dados exposta anteriormente, deve mostrar assim:&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Faixa de Valor | Quantidade de Clientes | Quantidade de Títulos&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;0 até 100 - 1 - 1&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;100,01 até 200 - 0 - 1&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;200,01 até 300 - 2&amp;nbsp; - 2&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;300,01 Até 9999999 - 1&amp;nbsp; - 1&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 May 2018 16:02:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calcular-Quantidade-de-Registros-na-Tabela-na-Maior-Dimens%C3%A3o/m-p/22216#M3745</guid>
      <dc:creator>jftalmeida</dc:creator>
      <dc:date>2018-05-14T16:02:44Z</dc:date>
    </item>
    <item>
      <title>Re: Calcular Quantidade de Registros na Tabela na Maior Dimensão</title>
      <link>https://community.qlik.com/t5/QlikView/Calcular-Quantidade-de-Registros-na-Tabela-na-Maior-Dimens%C3%A3o/m-p/22217#M3746</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Apenas retornando que eu consegui fazer a expressão aqui, faltava utilizar a cláusula TOTAL dentro da expressão, ficando da seguinte forma:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Exemplo: COUNT( DISTINCT IF( &lt;/SPAN&gt;&lt;SPAN style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;AGGR(&lt;/SPAN&gt;&lt;SPAN style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;MAX&lt;/SPAN&gt;&lt;SPAN style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;( &lt;/SPAN&gt;&lt;SPAN style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Value1 &lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;), &lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit;"&gt;Customer &lt;/SPAN&gt;, [&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit;"&gt;Value range&lt;/SPAN&gt;] ) = &lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13px;"&gt;AGGR(&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13px;"&gt;MAX&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13px;"&gt;({&amp;lt;&lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;[&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;Value range&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;]=&lt;/SPAN&gt;&amp;gt;} &lt;STRONG&gt;&lt;SPAN style="text-decoration: underline;"&gt;TOTAL&amp;lt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px; text-decoration: underline;"&gt;Customer &lt;/SPAN&gt;&amp;gt;&lt;/SPAN&gt; &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13px;"&gt;Value1 &lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt;"&gt;), &lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit;"&gt;Customer &lt;/SPAN&gt;, [&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit;"&gt;Value range&lt;/SPAN&gt;] ), &lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13px;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;Customer&lt;/STRONG&gt; , NULL())&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-style: inherit; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-weight: inherit;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-style: inherit; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-weight: inherit;"&gt;&lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/wink.png" /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-style: inherit; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-weight: inherit;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-style: inherit; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-weight: inherit;"&gt;Mesmo assim agradeço pela tentativa de apoio.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 May 2018 17:25:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calcular-Quantidade-de-Registros-na-Tabela-na-Maior-Dimens%C3%A3o/m-p/22217#M3746</guid>
      <dc:creator>jftalmeida</dc:creator>
      <dc:date>2018-05-14T17:25:44Z</dc:date>
    </item>
  </channel>
</rss>

