<?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 Need Help in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Need-Help/m-p/867225#M995558</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Community,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have one scenario,&lt;/P&gt;&lt;P&gt;I have one table like,&lt;/P&gt;&lt;P&gt;LOAD ID,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Status,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Date,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Date(Date,'MMM-YY') as MonthYear ,&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Duedate,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Date(Duedate,'MMM-YY') as DDMonthYear&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;&lt;F&gt;&lt;/F&gt;&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is Sheet3);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to show in Bar Chart....&lt;/P&gt;&lt;P&gt;MonthYear wise &lt;STRONG&gt;Satus for Date and DueDate Count&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in Advance....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 02 Jul 2015 03:01:03 GMT</pubDate>
    <dc:creator>paulwalker</dc:creator>
    <dc:date>2015-07-02T03:01:03Z</dc:date>
    <item>
      <title>Need Help</title>
      <link>https://community.qlik.com/t5/QlikView/Need-Help/m-p/867225#M995558</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Community,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have one scenario,&lt;/P&gt;&lt;P&gt;I have one table like,&lt;/P&gt;&lt;P&gt;LOAD ID,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Status,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Date,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Date(Date,'MMM-YY') as MonthYear ,&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Duedate,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Date(Duedate,'MMM-YY') as DDMonthYear&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;&lt;F&gt;&lt;/F&gt;&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is Sheet3);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to show in Bar Chart....&lt;/P&gt;&lt;P&gt;MonthYear wise &lt;STRONG&gt;Satus for Date and DueDate Count&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in Advance....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Jul 2015 03:01:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Need-Help/m-p/867225#M995558</guid>
      <dc:creator>paulwalker</dc:creator>
      <dc:date>2015-07-02T03:01:03Z</dc:date>
    </item>
    <item>
      <title>Re: Need Help</title>
      <link>https://community.qlik.com/t5/QlikView/Need-Help/m-p/867226#M995559</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Paul&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To calculate your MonthYear use the following: &lt;/P&gt;&lt;P&gt;Date(MonthStart(Date),'MMM-YYYY')&amp;nbsp; as MonthYear,&lt;/P&gt;&lt;P&gt;Date(MonthStart(DueDate),'MMM-YYYY') as DDMonthYear&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(The 'Date' within the MonthStart parenthesis is the name of your date field whereas the 'Date' at the start of the line is the QV function.)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so your script would become:&lt;/P&gt;&lt;P&gt;LOAD ID,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Status,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Date,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Date(MonthStart(Date),'MMM-YYYY') as MonthYear ,&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.33px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Duedate,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Date(MonthStart(DueDate),'MMM-YYYY') as DDMonthYear&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;&lt;F&gt;&lt;/F&gt;&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is Sheet3);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can then use MonthYear or DDMonthYear as a dimension in your Bar Chart. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You could also set up a cyclic or drill down group to include MonthYear and DDMonthYear where you could use the group as the Dimension and then be able to switch between MonthYear or DDMonthYear in the same chart.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can access the groups option at&lt;/P&gt;&lt;P&gt;&lt;IMG class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/91595_pastedImage_1.png" style="max-height: 900px; max-width: 1200px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope that helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Steve&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Jul 2015 03:13:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Need-Help/m-p/867226#M995559</guid>
      <dc:creator />
      <dc:date>2015-07-02T03:13:57Z</dc:date>
    </item>
    <item>
      <title>Re: Need Help</title>
      <link>https://community.qlik.com/t5/QlikView/Need-Help/m-p/867227#M995561</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I want to show staked bar's..&lt;/P&gt;&lt;P&gt;dimension i want to create dynamically and i need to show &lt;STRONG&gt;Count(Duedate status) and Count(Date status).&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Please anyone can help me....&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Like...&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="91575" alt="Captur11e.JPG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/91575_Captur11e.JPG" style="height: 219px; width: 620px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Jul 2015 03:22:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Need-Help/m-p/867227#M995561</guid>
      <dc:creator>paulwalker</dc:creator>
      <dc:date>2015-07-02T03:22:29Z</dc:date>
    </item>
    <item>
      <title>Re: Need Help</title>
      <link>https://community.qlik.com/t5/QlikView/Need-Help/m-p/867228#M995562</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please anyone faced this type of issue...&lt;/P&gt;&lt;P&gt;and i want to restrict only current Monthyear&amp;nbsp; data only..&lt;/P&gt;&lt;P&gt;by default i want to show Like(Jan-15,Feb-15,Apr-15,May-15,Jun-15,Jul-15,Aug-15,Sep-15,Oct-15,Nov-15,Dec-15)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i dont want to show (Jan16,feb16 and so on), if i am click 2016 i want to show.....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Jul 2015 09:46:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Need-Help/m-p/867228#M995562</guid>
      <dc:creator>paulwalker</dc:creator>
      <dc:date>2015-07-02T09:46:44Z</dc:date>
    </item>
    <item>
      <title>Re: Need Help</title>
      <link>https://community.qlik.com/t5/QlikView/Need-Help/m-p/867229#M995564</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&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In expression.&lt;/P&gt;&lt;P&gt;Count({&amp;lt;Date={"&amp;lt;$(=max(Date))"},MonthYear=&amp;gt;}Duedate status)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Jul 2015 10:01:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Need-Help/m-p/867229#M995564</guid>
      <dc:creator>PrashantSangle</dc:creator>
      <dc:date>2015-07-02T10:01:13Z</dc:date>
    </item>
    <item>
      <title>Re: Need Help</title>
      <link>https://community.qlik.com/t5/QlikView/Need-Help/m-p/867230#M995566</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Max,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I thought i have simple query...&lt;/P&gt;&lt;P&gt;i have one calculate dimension&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;Like(Month-Year)Jan-15,Feb-15,Apr-15,May-15,Jun-15,Jul-15,Aug-15,Sep-15,Oct-15,Nov-15,Dec-15)&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;and i have 2 date fields......1. Date 2. DueDate&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;i want to calculate date wise status(Status i have field)&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;1. Date wise Count(status)&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;2. Duedate wise Count(status)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i want to compare status Count&amp;nbsp; &lt;STRONG&gt;Date wise and DueDate wise.&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Jul 2015 10:14:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Need-Help/m-p/867230#M995566</guid>
      <dc:creator>paulwalker</dc:creator>
      <dc:date>2015-07-02T10:14:50Z</dc:date>
    </item>
    <item>
      <title>Re: Need Help</title>
      <link>https://community.qlik.com/t5/QlikView/Need-Help/m-p/867231#M995567</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Paul&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think I understand what you want now.&amp;nbsp; If I have understood correctly you have a data set that contains a number of date status entries and a number of due date status entries and you wish to create a stacked bar chart based on MonthYear where you can see the count of each type of status for each MonthYear period.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If that is correct then I believe you are looking for a result like this:&lt;/P&gt;&lt;P&gt;&lt;IMG class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/91743_pastedImage_0.png" style="max-height: 900px; max-width: 1200px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The key to achieving this is to load your data in two steps and tag the data so you can use set analysis in your expressions to pick out the particular type of data you wish to show.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I will call your 'Date' field 'CAL_Date' just for clarity to avoid confusion with the Date function.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So the load script is:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;StatusData:&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="; color: #0000ff; font-size: 8pt;"&gt;&lt;STRONG&gt;LOAD&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Date&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;CAL_Date&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,'MMM-YYYY') &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;AS&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;MonthYear&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;BR /&gt; 'StatusDate' &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;as&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;DateType&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;, &lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;Status&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;nbsp; &lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;FROM&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt; [Statuses.xlsx]&lt;BR /&gt; (&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;ooxml&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;, &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;embedded&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;labels&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;, &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;table&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;is&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; StatusDates);&lt;BR /&gt; &lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Concatenate&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; (StatusData)&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="; color: #0000ff; font-size: 8pt;"&gt;&lt;STRONG&gt;Load&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Date&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;CAL_Date&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,'MMM-YYYY') &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;as&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;MonthYear&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;, &lt;BR /&gt; 'DueDate' &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;as&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;DateType&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;, &lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;Status&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;nbsp; &lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;FROM&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt; [Statuses.xlsx]&lt;BR /&gt; (&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;ooxml&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;, &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;embedded&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;labels&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;, &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;table&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;is&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; DueDates); &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;In the above script I firstly loaded the set of status data using your 'Date' as the MonthYear and tagging these values with a type of 'StatusDate'.&amp;nbsp; Secondly I concatenated the Due Date data but tagged these with a type of 'DueDate'.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;This means that in memory I actually now have one big table containing all the data but each row is differentiated by the type of date represented in the row.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;Moving to the bar chart I can then use MonthYear as the dimension and then create two expressions using set analysis.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;For the 'Due Status' expression the formula is: &lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Count&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; ({$&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;DateType&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;={'DueDate'}&amp;gt;}&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;Status&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;) &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;For the 'Date Status' expression the formula is: &lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Count&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; ({$&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;DateType&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;={'StatusDate'}&amp;gt;}&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;Status&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;) &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;The result is the above chart which I believe is what you are trying to achieve.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;Hope that helps.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;Kind regards&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;Steve&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Jul 2015 00:17:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Need-Help/m-p/867231#M995567</guid>
      <dc:creator />
      <dc:date>2015-07-03T00:17:58Z</dc:date>
    </item>
  </channel>
</rss>

