<?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 Data display in a chart (Bar or Combo) in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Data-display-in-a-chart-Bar-or-Combo/m-p/2507104#M104294</link>
    <description>&lt;P&gt;I have data as below - In the bar chart I want to show the Max of Total Badge-in only as&amp;nbsp; a dot -&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Measure expression is count(distinct Badge-in)/count(distinct days).How can I show max as a point in the same chart - Here it should show 9,902 on 'TUE' bar.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="BI_Dev_0-1740412283882.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/177807i095BAF9B00D63ECE/image-size/medium?v=v2&amp;amp;px=400" role="button" title="BI_Dev_0-1740412283882.png" alt="BI_Dev_0-1740412283882.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 24 Feb 2025 15:55:12 GMT</pubDate>
    <dc:creator>BI_Dev</dc:creator>
    <dc:date>2025-02-24T15:55:12Z</dc:date>
    <item>
      <title>Data display in a chart (Bar or Combo)</title>
      <link>https://community.qlik.com/t5/App-Development/Data-display-in-a-chart-Bar-or-Combo/m-p/2507104#M104294</link>
      <description>&lt;P&gt;I have data as below - In the bar chart I want to show the Max of Total Badge-in only as&amp;nbsp; a dot -&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Measure expression is count(distinct Badge-in)/count(distinct days).How can I show max as a point in the same chart - Here it should show 9,902 on 'TUE' bar.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="BI_Dev_0-1740412283882.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/177807i095BAF9B00D63ECE/image-size/medium?v=v2&amp;amp;px=400" role="button" title="BI_Dev_0-1740412283882.png" alt="BI_Dev_0-1740412283882.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 24 Feb 2025 15:55:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Data-display-in-a-chart-Bar-or-Combo/m-p/2507104#M104294</guid>
      <dc:creator>BI_Dev</dc:creator>
      <dc:date>2025-02-24T15:55:12Z</dc:date>
    </item>
    <item>
      <title>Re: Data display in a chart (Bar or Combo)</title>
      <link>https://community.qlik.com/t5/App-Development/Data-display-in-a-chart-Bar-or-Combo/m-p/2507114#M104296</link>
      <description>&lt;P&gt;Change your chart to a combo chart, then add a new measure, something like the below, and display as marker:&lt;/P&gt;
&lt;P&gt;if(&lt;BR /&gt;count(distinct Badge-in) =&lt;BR /&gt;max(TOTAL aggr(count(distinct Badge-in),[Weekday])),&lt;BR /&gt;count(distinct Badge-in)&lt;BR /&gt;)&lt;/P&gt;
&lt;P&gt;This is saying, if your measure for any given dimension value is the same as the max value across all dimension values, then display it... so would result in a point for the day with the max value, and nothing for other days.&lt;/P&gt;
&lt;P&gt;You may also want to display it on a secondary axis to ensure the bars still have a reasonable height.&lt;/P&gt;</description>
      <pubDate>Mon, 24 Feb 2025 16:58:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Data-display-in-a-chart-Bar-or-Combo/m-p/2507114#M104296</guid>
      <dc:creator>Ben_P</dc:creator>
      <dc:date>2025-02-24T16:58:50Z</dc:date>
    </item>
    <item>
      <title>Re: Data display in a chart (Bar or Combo)</title>
      <link>https://community.qlik.com/t5/App-Development/Data-display-in-a-chart-Bar-or-Combo/m-p/2507116#M104297</link>
      <description>&lt;P&gt;Hi,&lt;BR /&gt;&lt;BR /&gt;Using the match chart, try the approach below with the &lt;STRONG&gt;pick&lt;/STRONG&gt; function in conjunction with &lt;STRONG&gt;match&lt;/STRONG&gt;:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;pick(match(&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;SPAN&gt;count&lt;/SPAN&gt;(distinct [Total Badge-in]),&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; max(total aggr(&lt;SPAN&gt;count&lt;/SPAN&gt;(distinct [Total Badge-in]),[Badge Weekday])))+1,Null(),max(total aggr(count(distinct [Total Badge-in]),[Badge Weekday])))&lt;BR /&gt;&lt;BR /&gt;Adjust according to your data.&lt;BR /&gt;&lt;BR /&gt;- Regards, Matheus&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 24 Feb 2025 17:11:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Data-display-in-a-chart-Bar-or-Combo/m-p/2507116#M104297</guid>
      <dc:creator>MatheusC</dc:creator>
      <dc:date>2025-02-24T17:11:28Z</dc:date>
    </item>
    <item>
      <title>Re: Data display in a chart (Bar or Combo)</title>
      <link>https://community.qlik.com/t5/App-Development/Data-display-in-a-chart-Bar-or-Combo/m-p/2507154#M104301</link>
      <description>&lt;P&gt;Try this&lt;/P&gt;
&lt;P&gt;If(Count(DISTINCT [Badge-in]) / Count(DISTINCT [Days]) =&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp;Max(Aggr(Count(DISTINCT [Badge-in]) / Count(DISTINCT [Days]), [DayOfWeek])),&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp;Count(DISTINCT [Badge-in]) / Count(DISTINCT [Days])&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;)&lt;/P&gt;</description>
      <pubDate>Tue, 25 Feb 2025 02:47:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Data-display-in-a-chart-Bar-or-Combo/m-p/2507154#M104301</guid>
      <dc:creator>Chanty4u</dc:creator>
      <dc:date>2025-02-25T02:47:03Z</dc:date>
    </item>
  </channel>
</rss>

