<?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 Pivot table - get field value when nodes are collapsed in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Pivot-table-get-field-value-when-nodes-are-collapsed/m-p/200079#M58748</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;the value that's I'm looking to get is 1 or 2&lt;/P&gt;&lt;P&gt;I need to get the value from DATA table where wbs_id=NodeNameX&lt;/P&gt;&lt;P&gt;where X=dimendionality()&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 03 Feb 2011 17:16:33 GMT</pubDate>
    <dc:creator />
    <dc:date>2011-02-03T17:16:33Z</dc:date>
    <item>
      <title>Pivot table - get field value when nodes are collapsed</title>
      <link>https://community.qlik.com/t5/QlikView/Pivot-table-get-field-value-when-nodes-are-collapsed/m-p/200077#M58746</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;BR /&gt;I use a pivot table to display a hierarchy,&lt;BR /&gt; the dimensions of this pivot table are 3 fields from the hierarchy&lt;BR /&gt; I need to display as an expression a field , which has different values for each dimension fields&lt;BR /&gt;the problem is that when the nodes are collapsed I get null as a value, only when the nodes are fully expanded I get a real value.&lt;BR /&gt;I think I should use a set analysis for this expression , but I wasn't able to write anything that works...&lt;BR /&gt;attached a file with the example&lt;BR /&gt;Thanks for any help,&lt;BR /&gt;Nitza&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Feb 2011 16:12:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Pivot-table-get-field-value-when-nodes-are-collapsed/m-p/200077#M58746</guid>
      <dc:creator />
      <dc:date>2011-02-03T16:12:20Z</dc:date>
    </item>
    <item>
      <title>Pivot table - get field value when nodes are collapsed</title>
      <link>https://community.qlik.com/t5/QlikView/Pivot-table-get-field-value-when-nodes-are-collapsed/m-p/200078#M58747</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When it is collapsed you are doing an aggregation, since your field doesn't have an aggregation function, QlikView has a choice of 3 or 4, but no logic telling it which one to pick, so you get a null.&lt;/P&gt;&lt;P&gt;Which value should appear, 3 or 4? If 4, then use:&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;Max(eac_method)&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;Or &lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;Min(eac_method)&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;Adding an aggregate function will allow QlikView to display a value when collapsed. &lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Feb 2011 16:23:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Pivot-table-get-field-value-when-nodes-are-collapsed/m-p/200078#M58747</guid>
      <dc:creator />
      <dc:date>2011-02-03T16:23:00Z</dc:date>
    </item>
    <item>
      <title>Pivot table - get field value when nodes are collapsed</title>
      <link>https://community.qlik.com/t5/QlikView/Pivot-table-get-field-value-when-nodes-are-collapsed/m-p/200079#M58748</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;the value that's I'm looking to get is 1 or 2&lt;/P&gt;&lt;P&gt;I need to get the value from DATA table where wbs_id=NodeNameX&lt;/P&gt;&lt;P&gt;where X=dimendionality()&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Feb 2011 17:16:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Pivot-table-get-field-value-when-nodes-are-collapsed/m-p/200079#M58748</guid>
      <dc:creator />
      <dc:date>2011-02-03T17:16:33Z</dc:date>
    </item>
    <item>
      <title>Pivot table - get field value when nodes are collapsed</title>
      <link>https://community.qlik.com/t5/QlikView/Pivot-table-get-field-value-when-nodes-are-collapsed/m-p/200080#M58749</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It's ugly, but it works:&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;Pick(Dimensionality(),&lt;BR /&gt; Only(Total If(IsNull(NodeName3) and IsNull(NodeName2), eac_method)),&lt;BR /&gt; Only(Total If(IsNull(NodeName3) and Not IsNull(NodeName2), eac_method)),&lt;BR /&gt; Only(eac_method)&lt;BR /&gt;)&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Feb 2011 22:36:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Pivot-table-get-field-value-when-nodes-are-collapsed/m-p/200080#M58749</guid>
      <dc:creator />
      <dc:date>2011-02-03T22:36:01Z</dc:date>
    </item>
    <item>
      <title>Pivot table - get field value when nodes are collapsed</title>
      <link>https://community.qlik.com/t5/QlikView/Pivot-table-get-field-value-when-nodes-are-collapsed/m-p/200081#M58750</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks a lot, it works &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 06 Feb 2011 06:56:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Pivot-table-get-field-value-when-nodes-are-collapsed/m-p/200081#M58750</guid>
      <dc:creator />
      <dc:date>2011-02-06T06:56:01Z</dc:date>
    </item>
  </channel>
</rss>

