<?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 Limit chart value using expression in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Limit-chart-value-using-expression/m-p/796897#M281544</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am trying to only show records that have a percent value over 5% and then show the top 10 sorted by total. I have tried using dimension limits and it doesn't give the the result I am expecting. I have attached the application and you will notice the chart is showing the top 10 by total, but there are records that have less than 5% showing. I would like this chart sorted by Total and only shows the 10 where the % is greater than 5%. Any help would be greatly appreciated. Thank you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 08 Dec 2014 17:19:03 GMT</pubDate>
    <dc:creator>tchovanec</dc:creator>
    <dc:date>2014-12-08T17:19:03Z</dc:date>
    <item>
      <title>Limit chart value using expression</title>
      <link>https://community.qlik.com/t5/QlikView/Limit-chart-value-using-expression/m-p/796897#M281544</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am trying to only show records that have a percent value over 5% and then show the top 10 sorted by total. I have tried using dimension limits and it doesn't give the the result I am expecting. I have attached the application and you will notice the chart is showing the top 10 by total, but there are records that have less than 5% showing. I would like this chart sorted by Total and only shows the 10 where the % is greater than 5%. Any help would be greatly appreciated. Thank you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Dec 2014 17:19:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Limit-chart-value-using-expression/m-p/796897#M281544</guid>
      <dc:creator>tchovanec</dc:creator>
      <dc:date>2014-12-08T17:19:03Z</dc:date>
    </item>
    <item>
      <title>Re: Limit chart value using expression</title>
      <link>https://community.qlik.com/t5/QlikView/Limit-chart-value-using-expression/m-p/796898#M281545</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You may want to take down that example and scramble the PHI. I believe MRN counts as PHI under HIPAA. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To solve the issue you could use the Show Values 'Greater Than' 5% relative to total. But this would show over 10 categories if there are over ten values that are greater than 5% of the total. In your example there are not. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Dec 2014 17:39:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Limit-chart-value-using-expression/m-p/796898#M281545</guid>
      <dc:creator>cspencer3</dc:creator>
      <dc:date>2014-12-08T17:39:45Z</dc:date>
    </item>
    <item>
      <title>Re: Limit chart value using expression</title>
      <link>https://community.qlik.com/t5/QlikView/Limit-chart-value-using-expression/m-p/796899#M281546</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use expression as below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF(COUNT(DISTINCT&lt;/P&gt;&lt;P&gt;{&amp;lt;&lt;/P&gt;&lt;P&gt;FLG_POSTED_CHARGES_WITHIN_4_DAYS = {0},&lt;/P&gt;&lt;P&gt;DateType = {'TX_POST_DATE'},&lt;/P&gt;&lt;P&gt;TX_POST_DATE = P(DATE),&lt;/P&gt;&lt;P&gt;FLG_OSU_COST_CENTER = {0}&lt;/P&gt;&lt;P&gt;&amp;gt;}TX_ID)&lt;/P&gt;&lt;P&gt;/&lt;/P&gt;&lt;P&gt;COUNT(DISTINCT{&amp;lt;&lt;/P&gt;&lt;P&gt;DateType = {'TX_POST_DATE'},&lt;/P&gt;&lt;P&gt;TX_POST_DATE=P(DATE),&lt;/P&gt;&lt;P&gt;FLG_OSU_COST_CENTER = {0}&lt;/P&gt;&lt;P&gt;&amp;gt;}&lt;/P&gt;&lt;P&gt;TX_ID) &amp;gt;= 0.1,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;COUNT(DISTINCT&lt;/P&gt;&lt;P&gt;{&amp;lt;&lt;/P&gt;&lt;P&gt;FLG_POSTED_CHARGES_WITHIN_4_DAYS = {0},&lt;/P&gt;&lt;P&gt;DateType = {'TX_POST_DATE'},&lt;/P&gt;&lt;P&gt;TX_POST_DATE = P(DATE),&lt;/P&gt;&lt;P&gt;FLG_OSU_COST_CENTER = {0}&lt;/P&gt;&lt;P&gt;&amp;gt;}TX_ID))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF(COUNT(DISTINCT&lt;/P&gt;&lt;P&gt;{&amp;lt;&lt;/P&gt;&lt;P&gt;FLG_POSTED_CHARGES_WITHIN_4_DAYS = {0},&lt;/P&gt;&lt;P&gt;DateType = {'TX_POST_DATE'},&lt;/P&gt;&lt;P&gt;TX_POST_DATE = P(DATE),&lt;/P&gt;&lt;P&gt;FLG_OSU_COST_CENTER = {0}&lt;/P&gt;&lt;P&gt;&amp;gt;}TX_ID)&lt;/P&gt;&lt;P&gt;/&lt;/P&gt;&lt;P&gt;COUNT(DISTINCT{&amp;lt;&lt;/P&gt;&lt;P&gt;DateType = {'TX_POST_DATE'},&lt;/P&gt;&lt;P&gt;TX_POST_DATE=P(DATE),&lt;/P&gt;&lt;P&gt;FLG_OSU_COST_CENTER = {0}&lt;/P&gt;&lt;P&gt;&amp;gt;}&lt;/P&gt;&lt;P&gt;TX_ID)&amp;gt;=0.1, COUNT(DISTINCT&lt;/P&gt;&lt;P&gt;{&amp;lt;&lt;/P&gt;&lt;P&gt;FLG_POSTED_CHARGES_WITHIN_4_DAYS = {0},&lt;/P&gt;&lt;P&gt;DateType = {'TX_POST_DATE'},&lt;/P&gt;&lt;P&gt;TX_POST_DATE = P(DATE),&lt;/P&gt;&lt;P&gt;FLG_OSU_COST_CENTER = {0}&lt;/P&gt;&lt;P&gt;&amp;gt;}TX_ID)&lt;/P&gt;&lt;P&gt;/&lt;/P&gt;&lt;P&gt;COUNT(DISTINCT{&amp;lt;&lt;/P&gt;&lt;P&gt;DateType = {'TX_POST_DATE'},&lt;/P&gt;&lt;P&gt;TX_POST_DATE=P(DATE),&lt;/P&gt;&lt;P&gt;FLG_OSU_COST_CENTER = {0}&lt;/P&gt;&lt;P&gt;&amp;gt;}&lt;/P&gt;&lt;P&gt;TX_ID))&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Dec 2014 17:44:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Limit-chart-value-using-expression/m-p/796899#M281546</guid>
      <dc:creator>MK_QSL</dc:creator>
      <dc:date>2014-12-08T17:44:41Z</dc:date>
    </item>
    <item>
      <title>Re: Limit chart value using expression</title>
      <link>https://community.qlik.com/t5/QlikView/Limit-chart-value-using-expression/m-p/796900#M281547</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for noticing the MRN. I thought I scrambled all the PHI. I have taken that down and uploaded one with MRN scrambled. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Dec 2014 17:44:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Limit-chart-value-using-expression/m-p/796900#M281547</guid>
      <dc:creator>tchovanec</dc:creator>
      <dc:date>2014-12-08T17:44:46Z</dc:date>
    </item>
    <item>
      <title>Re: Limit chart value using expression</title>
      <link>https://community.qlik.com/t5/QlikView/Limit-chart-value-using-expression/m-p/796901#M281548</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Charles I tried this and when I change to use the Show Values 'Greater Than' 5% relative to total, cost centers with less than 5% still show up.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Dec 2014 17:49:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Limit-chart-value-using-expression/m-p/796901#M281548</guid>
      <dc:creator>tchovanec</dc:creator>
      <dc:date>2014-12-08T17:49:52Z</dc:date>
    </item>
    <item>
      <title>Re: Limit chart value using expression</title>
      <link>https://community.qlik.com/t5/QlikView/Limit-chart-value-using-expression/m-p/796902#M281549</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Manish,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is not working. Giving me -%'s for most of the numbers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Dec 2014 18:56:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Limit-chart-value-using-expression/m-p/796902#M281549</guid>
      <dc:creator>tchovanec</dc:creator>
      <dc:date>2014-12-08T18:56:20Z</dc:date>
    </item>
    <item>
      <title>Re: Limit chart value using expression</title>
      <link>https://community.qlik.com/t5/QlikView/Limit-chart-value-using-expression/m-p/796903#M281550</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Tom,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think you can do something like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if(percentage &amp;gt; .05,&lt;/P&gt;&lt;P&gt;expression)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in both your total and percentage expressions that should work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Ray&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Dec 2014 19:41:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Limit-chart-value-using-expression/m-p/796903#M281550</guid>
      <dc:creator />
      <dc:date>2014-12-08T19:41:11Z</dc:date>
    </item>
  </channel>
</rss>

