<?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: Pivot Chart Expression using RowNo() in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Pivot-Chart-Expression-using-RowNo/m-p/1254829#M855348</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anil,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;No! my expectation is to see value for each row and column intersection. Similar to what I have in Pivot 1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 11 Feb 2017 14:38:11 GMT</pubDate>
    <dc:creator />
    <dc:date>2017-02-11T14:38:11Z</dc:date>
    <item>
      <title>Pivot Chart Expression using RowNo()</title>
      <link>https://community.qlik.com/t5/QlikView/Pivot-Chart-Expression-using-RowNo/m-p/1254827#M855346</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can some please take a look at my second Pivot Chart and help me understand why I am getting value only for 1 value of the dimension? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Pivot-Chart-Expression-using-RowNo/m-p/1254827#M855346</guid>
      <dc:creator />
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Pivot Chart Expression using RowNo()</title>
      <link>https://community.qlik.com/t5/QlikView/Pivot-Chart-Expression-using-RowNo/m-p/1254828#M855347</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is you are expecting to see?&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/152832_Capture.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Feb 2017 01:33:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Pivot-Chart-Expression-using-RowNo/m-p/1254828#M855347</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2017-02-11T01:33:37Z</dc:date>
    </item>
    <item>
      <title>Re: Pivot Chart Expression using RowNo()</title>
      <link>https://community.qlik.com/t5/QlikView/Pivot-Chart-Expression-using-RowNo/m-p/1254829#M855348</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anil,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;No! my expectation is to see value for each row and column intersection. Similar to what I have in Pivot 1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Feb 2017 14:38:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Pivot-Chart-Expression-using-RowNo/m-p/1254829#M855348</guid>
      <dc:creator />
      <dc:date>2017-02-11T14:38:11Z</dc:date>
    </item>
    <item>
      <title>Re: Pivot Chart Expression using RowNo()</title>
      <link>https://community.qlik.com/t5/QlikView/Pivot-Chart-Expression-using-RowNo/m-p/1254830#M855349</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, the $-expansion is done before the table is calculated, so the RowNo() in set analysis won't work as expected, it returns '1' (for all rows), so only sums v1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Something as this can work but with this sample, I don't know if it's suitable in real data:&lt;/P&gt;&lt;P&gt;pick(RowNo(),&lt;/P&gt;&lt;P&gt; sum(total{&amp;lt;Venue={'v1'}&amp;gt;} Value),&lt;/P&gt;&lt;P&gt; sum(total{&amp;lt;Venue={'v2'}&amp;gt;} Value),&lt;/P&gt;&lt;P&gt; sum(total{&amp;lt;Venue={'v3'}&amp;gt;} Value),&lt;/P&gt;&lt;P&gt; sum(total{&amp;lt;Venue={'v4'}&amp;gt;} Value)&lt;/P&gt;&lt;P&gt;) + pick(ColumnNo(), // or should be '*' or any other operation?&lt;/P&gt;&lt;P&gt; sum(total{&amp;lt;Venue={'v1'}&amp;gt;} Value),&lt;/P&gt;&lt;P&gt; sum(total{&amp;lt;Venue={'v2'}&amp;gt;} Value),&lt;/P&gt;&lt;P&gt; sum(total{&amp;lt;Venue={'v3'}&amp;gt;} Value),&lt;/P&gt;&lt;P&gt; sum(total{&amp;lt;Venue={'v4'}&amp;gt;} Value)&lt;/P&gt;&lt;P&gt;)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Feb 2017 15:26:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Pivot-Chart-Expression-using-RowNo/m-p/1254830#M855349</guid>
      <dc:creator>rubenmarin</dc:creator>
      <dc:date>2017-02-11T15:26:58Z</dc:date>
    </item>
  </channel>
</rss>

