<?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: How to show drill-down value in text box? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-show-drill-down-value-in-text-box/m-p/648940#M473834</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;no problem, use this to get the value of the field.&amp;nbsp; Only one field can be selected however.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=$(=only(GetCurrentField(drillgroup)))&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 16 Oct 2014 20:37:41 GMT</pubDate>
    <dc:creator>wms_manis</dc:creator>
    <dc:date>2014-10-16T20:37:41Z</dc:date>
    <item>
      <title>How to show drill-down value in text box?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-show-drill-down-value-in-text-box/m-p/648935#M473829</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I created a drill down hierarchy used in a list box.&amp;nbsp; So when I select someone in the first “level”, the list box then shows the corresponding values in the 2nd “level”.&amp;nbsp; Then when I select a value in that 2&lt;SUP&gt;nd&lt;/SUP&gt; value list, it shows the corresponding values in the 3&lt;SUP&gt;rd&lt;/SUP&gt; “level”.&amp;nbsp;&amp;nbsp; The 3&lt;SUP&gt;rd&lt;/SUP&gt; level is the final level.&amp;nbsp; I’m trying to create a text box that will show the selection at the lowest “level”.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example, if I select value 1 at level 1, then select value 3 at level 2, then select value 5 at level 3, I want the text box to show value 5 at level 3.&amp;nbsp;&amp;nbsp; Basically, I want to show in the text box whatever value at whatever level is selected in the drill-down list box.&amp;nbsp; Can this be done?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&amp;nbsp; Dan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Oct 2014 20:19:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-show-drill-down-value-in-text-box/m-p/648935#M473829</guid>
      <dc:creator />
      <dc:date>2014-10-16T20:19:11Z</dc:date>
    </item>
    <item>
      <title>Re: How to show drill-down value in text box?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-show-drill-down-value-in-text-box/m-p/648936#M473830</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try &lt;/P&gt;&lt;P&gt;=GetCurrentField(drillgroupname)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Oct 2014 20:27:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-show-drill-down-value-in-text-box/m-p/648936#M473830</guid>
      <dc:creator>wms_manis</dc:creator>
      <dc:date>2014-10-16T20:27:30Z</dc:date>
    </item>
    <item>
      <title>Re: How to show drill-down value in text box?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-show-drill-down-value-in-text-box/m-p/648937#M473831</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the reponse, Wade.&amp;nbsp; This works, EXCEPT it's bringing back the field name,not the value of that field.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Oct 2014 20:30:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-show-drill-down-value-in-text-box/m-p/648937#M473831</guid>
      <dc:creator />
      <dc:date>2014-10-16T20:30:46Z</dc:date>
    </item>
    <item>
      <title>Re: How to show drill-down value in text box?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-show-drill-down-value-in-text-box/m-p/648938#M473832</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You must try into the text box something like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=if(not isnull(GetFieldSelections(Level1)),Level1,if(not isnull(GetFieldSelections(Level2)),Level2,if(not isnull(GetFieldSelections(Level3)),Level3)))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Remember to mark as answered if this is what you looking for!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Oct 2014 20:31:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-show-drill-down-value-in-text-box/m-p/648938#M473832</guid>
      <dc:creator />
      <dc:date>2014-10-16T20:31:01Z</dc:date>
    </item>
    <item>
      <title>Re: How to show drill-down value in text box?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-show-drill-down-value-in-text-box/m-p/648939#M473833</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks, Jonathan.&amp;nbsp; I had to add some parentheses, and got the formula to be "OK", but it only returns the first level's value...when I select the lower levels, the value in the text box remains the value of the first level.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Oct 2014 20:36:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-show-drill-down-value-in-text-box/m-p/648939#M473833</guid>
      <dc:creator />
      <dc:date>2014-10-16T20:36:19Z</dc:date>
    </item>
    <item>
      <title>Re: How to show drill-down value in text box?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-show-drill-down-value-in-text-box/m-p/648940#M473834</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;no problem, use this to get the value of the field.&amp;nbsp; Only one field can be selected however.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=$(=only(GetCurrentField(drillgroup)))&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Oct 2014 20:37:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-show-drill-down-value-in-text-box/m-p/648940#M473834</guid>
      <dc:creator>wms_manis</dc:creator>
      <dc:date>2014-10-16T20:37:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to show drill-down value in text box?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-show-drill-down-value-in-text-box/m-p/648941#M473835</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;reorder the fields, start from Level3&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=if(not isnull(GetFieldSelections(Level3)),Level3,if(not isnull(GetFieldSelections(Level2)),Level2,if(not isnull(GetFieldSelections(Level1)),Level1)))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sorry about this mistake!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps!&lt;/P&gt;&lt;P&gt;Regadss&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Oct 2014 20:40:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-show-drill-down-value-in-text-box/m-p/648941#M473835</guid>
      <dc:creator />
      <dc:date>2014-10-16T20:40:45Z</dc:date>
    </item>
    <item>
      <title>Re: How to show drill-down value in text box?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-show-drill-down-value-in-text-box/m-p/648942#M473836</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks, Wade.&amp;nbsp; This didn't work for me, either.&amp;nbsp; Fortunately, Jonathan's solution worked, so it appears I'm good for now.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Oct 2014 20:46:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-show-drill-down-value-in-text-box/m-p/648942#M473836</guid>
      <dc:creator />
      <dc:date>2014-10-16T20:46:39Z</dc:date>
    </item>
    <item>
      <title>Re: How to show drill-down value in text box?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-show-drill-down-value-in-text-box/m-p/648943#M473837</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks, Jonathan...it seems to work great.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Oct 2014 20:47:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-show-drill-down-value-in-text-box/m-p/648943#M473837</guid>
      <dc:creator />
      <dc:date>2014-10-16T20:47:41Z</dc:date>
    </item>
  </channel>
</rss>

