<?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: input box for bubble chart in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/input-box-for-bubble-chart/m-p/677332#M474711</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jonathan,&lt;/P&gt;&lt;P&gt;Sorry I was out of the office last week and just now able to review this. Is your suggestion above something that would be included as a conditional for the dimension? Where do you recommend using the IF clause?&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 09 Sep 2014 15:07:43 GMT</pubDate>
    <dc:creator>kmstephenson</dc:creator>
    <dc:date>2014-09-09T15:07:43Z</dc:date>
    <item>
      <title>input box for bubble chart</title>
      <link>https://community.qlik.com/t5/QlikView/input-box-for-bubble-chart/m-p/677328#M474707</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;I am attempting to add an input box to allow the user to restrict a chart to only show clinics with a certain number of patients (i.e. 10 or more patients, 20 or more, 100 or more, 1000 or more, etc.). The chart I will be using the input box for is a scatter chart with the following dimension and expressions:&lt;/P&gt;&lt;P&gt;- clinic name, &lt;EM&gt;pcp_practice_last_knwn_desc,&lt;/EM&gt; as the only dimension&lt;/P&gt;&lt;P&gt;- hcc score, &lt;EM&gt;hcc_c_v22_commun,&lt;/EM&gt; as the first expression (x-axis)&lt;/P&gt;&lt;P&gt;- number of ED visits, &lt;EM&gt;ed_cnt,&lt;/EM&gt; as the second expression (y-axis)&lt;/P&gt;&lt;P&gt;- total number of patients for the current selection, &lt;EM&gt;count(distinct patient_id),&lt;/EM&gt; as the third expression (bubble size) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The field patient_count (total number of patients per clinic) is available.&lt;/P&gt;&lt;P&gt;Given patient_count is not a dimension or expression, what is the recommended method of restricting the table to only display clinics with a certain number of patients (and to let the user select the minimum number of patients per clinic for display)?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Aug 2014 19:36:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/input-box-for-bubble-chart/m-p/677328#M474707</guid>
      <dc:creator>kmstephenson</dc:creator>
      <dc:date>2014-08-29T19:36:07Z</dc:date>
    </item>
    <item>
      <title>Re: input box for bubble chart</title>
      <link>https://community.qlik.com/t5/QlikView/input-box-for-bubble-chart/m-p/677329#M474708</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This will check if the subtotal of the patient count per clinic is greater than the variable captured by your input box and conditionally show the number or assign a NULL (which will be suppressed from the chart by default).&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if ( &lt;EM style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;count( total &amp;lt;&lt;EM style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;pcp_practice_last_knwn_desc&lt;/EM&gt;&amp;gt; distinct patient_id)&amp;nbsp; &amp;gt;=&amp;nbsp; $(YOURVARIABLE) ,&amp;nbsp; &lt;EM style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;count( total &amp;lt;&lt;EM style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;pcp_practice_last_knwn_desc&lt;/EM&gt;&amp;gt; distinct patient_id) &lt;/EM&gt;) &lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Aug 2014 20:17:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/input-box-for-bubble-chart/m-p/677329#M474708</guid>
      <dc:creator>JonnyPoole</dc:creator>
      <dc:date>2014-08-29T20:17:34Z</dc:date>
    </item>
    <item>
      <title>Re: input box for bubble chart</title>
      <link>https://community.qlik.com/t5/QlikView/input-box-for-bubble-chart/m-p/677330#M474709</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jonathan, &lt;BR /&gt;Can you please further explain what the above expression would be used for?&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Aug 2014 20:48:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/input-box-for-bubble-chart/m-p/677330#M474709</guid>
      <dc:creator>kmstephenson</dc:creator>
      <dc:date>2014-08-29T20:48:42Z</dc:date>
    </item>
    <item>
      <title>Re: input box for bubble chart</title>
      <link>https://community.qlik.com/t5/QlikView/input-box-for-bubble-chart/m-p/677331#M474710</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You would use the if clause in each condition to check if the total patients in a clinic was greater than the user inputted threshold.&amp;nbsp; The syntax above may not work 'as is' in your QVW.&amp;nbsp; I can tweak it if you have some sample data or qvw to share.&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Aug 2014 21:02:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/input-box-for-bubble-chart/m-p/677331#M474710</guid>
      <dc:creator>JonnyPoole</dc:creator>
      <dc:date>2014-08-29T21:02:26Z</dc:date>
    </item>
    <item>
      <title>Re: input box for bubble chart</title>
      <link>https://community.qlik.com/t5/QlikView/input-box-for-bubble-chart/m-p/677332#M474711</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jonathan,&lt;/P&gt;&lt;P&gt;Sorry I was out of the office last week and just now able to review this. Is your suggestion above something that would be included as a conditional for the dimension? Where do you recommend using the IF clause?&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Sep 2014 15:07:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/input-box-for-bubble-chart/m-p/677332#M474711</guid>
      <dc:creator>kmstephenson</dc:creator>
      <dc:date>2014-09-09T15:07:43Z</dc:date>
    </item>
    <item>
      <title>Re: input box for bubble chart</title>
      <link>https://community.qlik.com/t5/QlikView/input-box-for-bubble-chart/m-p/677333#M474712</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi there,&amp;nbsp; just rereading your post.&amp;nbsp; I believe you would want the condition on the dimension (as a calculated dimension) so that you only show clinics that match the condition. On the dimension aggr() tends to work well. Try the following and post an example if you are having issues.&amp;nbsp; Ensure the 'suppress null values' is turned on on the dimension tab for your dimension.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if(&amp;nbsp;&amp;nbsp; aggr(&amp;nbsp; &lt;EM style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;count( distinct patient_id), &lt;EM style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;pcp_practice_last_knwn_desc) &amp;gt;= &lt;/EM&gt;&lt;/EM&gt;&lt;EM style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt; $(YOURVARIABLE) , &lt;EM style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;pcp_practice_last_knwn_desc)&lt;/EM&gt;&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Sep 2014 15:15:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/input-box-for-bubble-chart/m-p/677333#M474712</guid>
      <dc:creator>JonnyPoole</dc:creator>
      <dc:date>2014-09-09T15:15:15Z</dc:date>
    </item>
  </channel>
</rss>

