<?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 Line graph showing count of projects completed by plan vs actual completion date in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Line-graph-showing-count-of-projects-completed-by-plan-vs-actual/m-p/1957846#M78974</link>
    <description>&lt;P&gt;I have a conundrum I have a set of project data that contains a plan and actual completion date.&lt;/P&gt;
&lt;P&gt;I would like to show a line graph that shows the count of projects by month,&amp;nbsp;a line for plan and another for actual.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.JPG" style="width: 560px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/84571i1EA2C83DDCA376EE/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.JPG" alt="Capture.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;I tried using the plan&amp;nbsp; date as the x axis, and then using&amp;nbsp; the following expression for the Actuals count:&lt;/P&gt;
&lt;P&gt;Count({&amp;lt;[ProjCompl MonYr]=p([Planned ProjCompl MonthYr])&amp;gt;} [Project ID])&lt;/P&gt;
&lt;P&gt;However this is not working.&lt;/P&gt;
&lt;P&gt;If anyone has a solution, please let me know.&lt;/P&gt;
&lt;P&gt;Thanks!&lt;/P&gt;</description>
    <pubDate>Tue, 19 Jul 2022 14:47:42 GMT</pubDate>
    <dc:creator>tschullo</dc:creator>
    <dc:date>2022-07-19T14:47:42Z</dc:date>
    <item>
      <title>Line graph showing count of projects completed by plan vs actual completion date</title>
      <link>https://community.qlik.com/t5/App-Development/Line-graph-showing-count-of-projects-completed-by-plan-vs-actual/m-p/1957846#M78974</link>
      <description>&lt;P&gt;I have a conundrum I have a set of project data that contains a plan and actual completion date.&lt;/P&gt;
&lt;P&gt;I would like to show a line graph that shows the count of projects by month,&amp;nbsp;a line for plan and another for actual.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.JPG" style="width: 560px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/84571i1EA2C83DDCA376EE/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.JPG" alt="Capture.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;I tried using the plan&amp;nbsp; date as the x axis, and then using&amp;nbsp; the following expression for the Actuals count:&lt;/P&gt;
&lt;P&gt;Count({&amp;lt;[ProjCompl MonYr]=p([Planned ProjCompl MonthYr])&amp;gt;} [Project ID])&lt;/P&gt;
&lt;P&gt;However this is not working.&lt;/P&gt;
&lt;P&gt;If anyone has a solution, please let me know.&lt;/P&gt;
&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Tue, 19 Jul 2022 14:47:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Line-graph-showing-count-of-projects-completed-by-plan-vs-actual/m-p/1957846#M78974</guid>
      <dc:creator>tschullo</dc:creator>
      <dc:date>2022-07-19T14:47:42Z</dc:date>
    </item>
    <item>
      <title>Re: Line graph showing count of projects completed by plan vs actual completion date</title>
      <link>https://community.qlik.com/t5/App-Development/Line-graph-showing-count-of-projects-completed-by-plan-vs-actual/m-p/1957997#M78988</link>
      <description>&lt;P&gt;My script solution is to create a table that brings in both dates into one that I can use as an X-axis:&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;RPT_DATES:&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;LOAD PROJ_ID,&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;[Planned ProjCompl MonYr] as RptMonYr,&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;[Planned ProjCompl Qtr] AS RptQtr,&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;1 as PlanDt&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;Resident PROJECT_DATA&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;WHERE Not IsNull([Planned ProjCompl MonYr]);&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;Concatenate(RPT_DATES)&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;LOAD PROJ_ID,&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;[ProjCompl MonYr] as RptMonYr,&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;[ProjCompl Qtr] AS RptQtr,&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;1 as ActualDt&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;Resident PROJECT_DATA&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;WHERE Not IsNull([ProjCompl MonYr]);&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;Then in the line graph I use&amp;nbsp;RptMonYr (or&amp;nbsp;RptQtr) as my x-axis &lt;BR /&gt;and sum(PlanDt) for one line &lt;BR /&gt;and sum(ActualDt) for the other.&lt;/P&gt;
&lt;P&gt;This works fine,&lt;/P&gt;</description>
      <pubDate>Tue, 19 Jul 2022 20:30:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Line-graph-showing-count-of-projects-completed-by-plan-vs-actual/m-p/1957997#M78988</guid>
      <dc:creator>tschullo</dc:creator>
      <dc:date>2022-07-19T20:30:18Z</dc:date>
    </item>
  </channel>
</rss>

