<?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 Drill down (level) on a pivot table in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Drill-down-level-on-a-pivot-table/m-p/1381949#M31440</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi community,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm using a drill down field on a pivot table.&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Untitled1.png" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/184833_Untitled1.png" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Untitled2.png" class="jive-image image-2" src="https://community.qlik.com/legacyfs/online/184834_Untitled2.png" style="height: 241px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you know how can I get the name of the field (level) currently being used on the pivot table? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the above, if nothing is selected then County will be level being displayed... If only one County is selected and nothing else on the levels, then [Service Line] is supposed to be displayed... and so on. On the image above I'll need to know that "Specialty" is the field being used.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any ideas? I thought in starting a big IF sentence to go over all levels and confirming if only one value of each is selected but I'm hoping there is a cleverer solution!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many thanks for your help,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Luis&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 28 Nov 2017 01:37:11 GMT</pubDate>
    <dc:creator>luismadriz</dc:creator>
    <dc:date>2017-11-28T01:37:11Z</dc:date>
    <item>
      <title>Drill down (level) on a pivot table</title>
      <link>https://community.qlik.com/t5/App-Development/Drill-down-level-on-a-pivot-table/m-p/1381949#M31440</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi community,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm using a drill down field on a pivot table.&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Untitled1.png" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/184833_Untitled1.png" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Untitled2.png" class="jive-image image-2" src="https://community.qlik.com/legacyfs/online/184834_Untitled2.png" style="height: 241px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you know how can I get the name of the field (level) currently being used on the pivot table? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the above, if nothing is selected then County will be level being displayed... If only one County is selected and nothing else on the levels, then [Service Line] is supposed to be displayed... and so on. On the image above I'll need to know that "Specialty" is the field being used.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any ideas? I thought in starting a big IF sentence to go over all levels and confirming if only one value of each is selected but I'm hoping there is a cleverer solution!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many thanks for your help,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Luis&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Nov 2017 01:37:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Drill-down-level-on-a-pivot-table/m-p/1381949#M31440</guid>
      <dc:creator>luismadriz</dc:creator>
      <dc:date>2017-11-28T01:37:11Z</dc:date>
    </item>
    <item>
      <title>Re: Drill down (level) on a pivot table</title>
      <link>https://community.qlik.com/t5/App-Development/Drill-down-level-on-a-pivot-table/m-p/1381950#M31441</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So far this seems to show what the field being used should be:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF (((GetSelectedCount(County)=1 OR GetPossibleCount(County)= 1) AND (GetSelectedCount([Service Line])=1 OR GetPossibleCount([Service Line])= 1) AND (GetSelectedCount(Specialty)=1 OR GetPossibleCount(Specialty)= 1) AND (GetPossibleCount([MD/DO vs APC])=1 OR GetSelectedCount([MD/DO vs APC])=1)),'PPEET',&lt;/P&gt;&lt;P&gt;IF (((GetSelectedCount(County)=1 OR GetPossibleCount(County)= 1) AND (GetSelectedCount([Service Line])=1 OR GetPossibleCount([Service Line])= 1) AND (GetSelectedCount(Specialty)=1 OR GetPossibleCount(Specialty)= 1)),'[MD/DO vs APC]',&lt;/P&gt;&lt;P&gt;IF (((GetSelectedCount(County)=1 OR GetPossibleCount(County)= 1) AND (GetSelectedCount([Service Line])=1 OR GetPossibleCount([Service Line])= 1)),'Specialty',&lt;/P&gt;&lt;P&gt;IF (((GetSelectedCount(County)=1 OR GetPossibleCount(County)= 1)),'[Service Line]','County'))))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope there was something more elegant...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Luis&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Nov 2017 05:48:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Drill-down-level-on-a-pivot-table/m-p/1381950#M31441</guid>
      <dc:creator>luismadriz</dc:creator>
      <dc:date>2017-11-28T05:48:16Z</dc:date>
    </item>
  </channel>
</rss>

