<?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: Drill-Downs in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Drill-Downs/m-p/906580#M314971</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Are you getting your data from the source in the way you have mentioned here?&lt;/P&gt;&lt;P&gt;If possible can you share qvw with dummy data?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jemimah&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 04 Jun 2015 04:15:27 GMT</pubDate>
    <dc:creator />
    <dc:date>2015-06-04T04:15:27Z</dc:date>
    <item>
      <title>Drill-Downs</title>
      <link>https://community.qlik.com/t5/QlikView/Drill-Downs/m-p/906579#M314970</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;I am trying to create a bar chart that drills down from the state to the city. The row with the blank city is more or less a total row that averages the percentages. I would like the Pennsylvania to show with a percentage of 20% as the first layer, and then once the user clicks on Pennsylvania, Pittsburgh and Philadelphia show with their percentages. Right now, Pennsyvania is showing with a blank percentage, but will drill down to Philadelphia and Pittsburgh. How can I get Qlik View to pull 20% for Pennsylvania instead of showing a blank? Thanks in advance for the help!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="1" class="jiveBorder" style="border: 1px solid rgb(0, 0, 0); width: 100%;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;STRONG&gt;State&lt;/STRONG&gt;&lt;/TH&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;STRONG&gt;City&lt;/STRONG&gt;&lt;/TH&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;STRONG&gt;Percentage&lt;/STRONG&gt;&lt;/TH&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;Pennsylvania&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;20%&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;Pennsylvania&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;Philadelphia&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;10%&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;Pennsylvania&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;Pittsburgh&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;30%&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Jun 2015 02:21:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Drill-Downs/m-p/906579#M314970</guid>
      <dc:creator />
      <dc:date>2015-06-04T02:21:54Z</dc:date>
    </item>
    <item>
      <title>Re: Drill-Downs</title>
      <link>https://community.qlik.com/t5/QlikView/Drill-Downs/m-p/906580#M314971</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Are you getting your data from the source in the way you have mentioned here?&lt;/P&gt;&lt;P&gt;If possible can you share qvw with dummy data?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jemimah&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Jun 2015 04:15:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Drill-Downs/m-p/906580#M314971</guid>
      <dc:creator />
      <dc:date>2015-06-04T04:15:27Z</dc:date>
    </item>
    <item>
      <title>Re: Drill-Downs</title>
      <link>https://community.qlik.com/t5/QlikView/Drill-Downs/m-p/906581#M314972</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try like this in script&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;*,&lt;/P&gt;&lt;P&gt;If(Len(Trim(City)) = 0, State, City) AS City_New&lt;/P&gt;&lt;P&gt;FROM DataSource;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now use State and City_New in your drilldown dimension.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note: you cannot drilldown with in the same dimension, drilldown can be done in different dimensions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Jun 2015 05:03:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Drill-Downs/m-p/906581#M314972</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2015-06-04T05:03:55Z</dc:date>
    </item>
    <item>
      <title>Re: Drill-Downs</title>
      <link>https://community.qlik.com/t5/QlikView/Drill-Downs/m-p/906582#M314973</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you want help debugging an expression, it would be useful to know what the expression is. In general, the more you provide with your post, including sample files, the more relevant and useful will be the responses.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Jun 2015 05:05:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Drill-Downs/m-p/906582#M314973</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2015-06-04T05:05:50Z</dc:date>
    </item>
  </channel>
</rss>

