<?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: Show Only Largest using Dimension Limits Properties. in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Show-Only-Largest-using-Dimension-Limits-Properties/m-p/890915#M470715</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;Are you using Key field to get Count?&amp;nbsp; Generally in chart we will fields like Customer, Product, Zone etc.&amp;nbsp; If you get Count on this fields then it won't be that much huge number.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also it is not good practice to display this many records in the charts, reduce the count by forcing users to select some filters.&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, 07 May 2015 05:21:11 GMT</pubDate>
    <dc:creator>jagan</dc:creator>
    <dc:date>2015-05-07T05:21:11Z</dc:date>
    <item>
      <title>Show Only Largest using Dimension Limits Properties.</title>
      <link>https://community.qlik.com/t5/QlikView/Show-Only-Largest-using-Dimension-Limits-Properties/m-p/890909#M470709</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I came across the Requirement where user should input values to display largest 10, 20 or All&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have implemented this by creating an inputbox and created a varaible vTop and named as Top and the set below properties:&lt;/P&gt;&lt;P&gt;Input Constraints: No Constraints&lt;/P&gt;&lt;P&gt;Enable Edit Expression Dialog box=Checked&lt;/P&gt;&lt;P&gt;Pre-defined Values in Drop-Down=Selected&lt;/P&gt;&lt;P&gt;Listed Values=10,20, All&lt;/P&gt;&lt;P&gt;Setting for Selected values=10&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now selected a chart and then went to Dimension Limits Tab--&amp;gt; Select A dimension--&amp;gt;Check the Option 'Restrict Which Values are displayed using the first Expression'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and then Show Only Largest=$(vTop).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am expecting when I select All It should display all values under that dimension (So basically no Restriction)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I achieve this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kindly don;t suggest to assign some junk value like 999999999999999999 when vTop=All.&lt;/P&gt;&lt;P&gt;=IF(vTop='All',999999999,$(vTop)) This is working fine but It will not take more than 99,9999999. If I try 99,99999991, It is giving Message No Data to display.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am looking for any other Alternates.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Shivendoo Kumar&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Shivendoo Kumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 May 2015 01:17:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Show-Only-Largest-using-Dimension-Limits-Properties/m-p/890909#M470709</guid>
      <dc:creator />
      <dc:date>2015-05-07T01:17:11Z</dc:date>
    </item>
    <item>
      <title>Re: Show Only Largest using Dimension Limits Properties.</title>
      <link>https://community.qlik.com/t5/QlikView/Show-Only-Largest-using-Dimension-Limits-Properties/m-p/890910#M470710</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am sure there is a more elegant way, but one quick &amp;amp; simple solution could be: create a copy of your chart without the dimension limit and use properties &amp;gt;layout &amp;gt; show conditional to show/hide it with vTop condition. So whenever the user selects 'All' the limited chart is hidden and the other is shown and vice versa&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 May 2015 02:05:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Show-Only-Largest-using-Dimension-Limits-Properties/m-p/890910#M470710</guid>
      <dc:creator>danieloberbilli</dc:creator>
      <dc:date>2015-05-07T02:05:22Z</dc:date>
    </item>
    <item>
      <title>Re: Show Only Largest using Dimension Limits Properties.</title>
      <link>https://community.qlik.com/t5/QlikView/Show-Only-Largest-using-Dimension-Limits-Properties/m-p/890911#M470711</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I appreciate you response and time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It won't be a memory over load? because same data we are loading in 2 charts and showing and hiding.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If not then I think it is better solution than &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;=IF(vTop='All',999999999,$(vTop)) &lt;/SPAN&gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 May 2015 02:09:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Show-Only-Largest-using-Dimension-Limits-Properties/m-p/890911#M470711</guid>
      <dc:creator />
      <dc:date>2015-05-07T02:09:07Z</dc:date>
    </item>
    <item>
      <title>Re: Show Only Largest using Dimension Limits Properties.</title>
      <link>https://community.qlik.com/t5/QlikView/Show-Only-Largest-using-Dimension-Limits-Properties/m-p/890912#M470712</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;A hidden object shouldnt have any significant effect on the performance at all. I think hidden or minimized objects dont consume any memory at all &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 May 2015 02:29:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Show-Only-Largest-using-Dimension-Limits-Properties/m-p/890912#M470712</guid>
      <dc:creator>danieloberbilli</dc:creator>
      <dc:date>2015-05-07T02:29:54Z</dc:date>
    </item>
    <item>
      <title>Re: Show Only Largest using Dimension Limits Properties.</title>
      <link>https://community.qlik.com/t5/QlikView/Show-Only-Largest-using-Dimension-Limits-Properties/m-p/890913#M470713</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;Instead of using &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;999999999, you can get the count and use it in the if statement like below&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;=IF(vTop='All', Count(Distinct DimensionName), vTop)&lt;/SPAN&gt;&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, 07 May 2015 03:32:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Show-Only-Largest-using-Dimension-Limits-Properties/m-p/890913#M470713</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2015-05-07T03:32:08Z</dc:date>
    </item>
    <item>
      <title>Re: Show Only Largest using Dimension Limits Properties.</title>
      <link>https://community.qlik.com/t5/QlikView/Show-Only-Largest-using-Dimension-Limits-Properties/m-p/890914#M470714</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Jagan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;=IF(vTop='All', Count(Distinct DimensionName), vTop)&lt;/SPAN&gt; expression will not work If &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Count(Distinct DimensionName) crosses &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;99,9999999&lt;/SPAN&gt;. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;I have a dimension attribute which is having more than 100 Million records. So &lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;=IF(vTop='All', Count(Distinct DimensionName), vTop) I can't use. &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 May 2015 04:28:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Show-Only-Largest-using-Dimension-Limits-Properties/m-p/890914#M470714</guid>
      <dc:creator />
      <dc:date>2015-05-07T04:28:11Z</dc:date>
    </item>
    <item>
      <title>Re: Show Only Largest using Dimension Limits Properties.</title>
      <link>https://community.qlik.com/t5/QlikView/Show-Only-Largest-using-Dimension-Limits-Properties/m-p/890915#M470715</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;Are you using Key field to get Count?&amp;nbsp; Generally in chart we will fields like Customer, Product, Zone etc.&amp;nbsp; If you get Count on this fields then it won't be that much huge number.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also it is not good practice to display this many records in the charts, reduce the count by forcing users to select some filters.&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, 07 May 2015 05:21:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Show-Only-Largest-using-Dimension-Limits-Properties/m-p/890915#M470715</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2015-05-07T05:21:11Z</dc:date>
    </item>
    <item>
      <title>Re: Show Only Largest using Dimension Limits Properties.</title>
      <link>https://community.qlik.com/t5/QlikView/Show-Only-Largest-using-Dimension-Limits-Properties/m-p/890916#M470716</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;All,&lt;/P&gt;&lt;P&gt;We got 3 Solutions for this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;=IF(vTop='All',99,9999999,$(vTop))&amp;nbsp; &lt;EM&gt;//Limitation: (It will not display any data if data is more than &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;99,9999999&lt;/SPAN&gt;)&lt;/EM&gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Daniel: Show and hide based on &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;vTop&lt;/SPAN&gt; value. &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;vTop='All' Show another chart which is not having any dimension Limits else use another which is having dimension limits and pass the value of &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;vTop&lt;/SPAN&gt; to limit.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Jagan: &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;=IF(vTop='All', Count(Distinct DimensionName), vTop) &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;EM&gt;//Limitation: (It will not display any data if data is more than &lt;/EM&gt;&lt;/SPAN&gt;&lt;EM style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;99,9999999&lt;/EM&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;EM&gt;)&lt;/EM&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 May 2015 07:12:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Show-Only-Largest-using-Dimension-Limits-Properties/m-p/890916#M470716</guid>
      <dc:creator />
      <dc:date>2015-05-08T07:12:39Z</dc:date>
    </item>
  </channel>
</rss>

