<?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 Two different Dates in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Two-different-Dates/m-p/1132827#M910616</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;&lt;/P&gt;&lt;P&gt;I have a table with two Dates open Date and Closed Date and a master calendar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now I wanted to show a bar chart with&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Dimension : Date (From master Calendar)&lt;/P&gt;&lt;P&gt;and&lt;/P&gt;&lt;P&gt;Expression :1)&amp;nbsp; No of open defect on that particular date&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2) No of close defects on that particular date.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2020-11-25T16:16:04Z</dc:date>
    <item>
      <title>Two different Dates</title>
      <link>https://community.qlik.com/t5/QlikView/Two-different-Dates/m-p/1132827#M910616</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;&lt;/P&gt;&lt;P&gt;I have a table with two Dates open Date and Closed Date and a master calendar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now I wanted to show a bar chart with&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Dimension : Date (From master Calendar)&lt;/P&gt;&lt;P&gt;and&lt;/P&gt;&lt;P&gt;Expression :1)&amp;nbsp; No of open defect on that particular date&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2) No of close defects on that particular date.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Two-different-Dates/m-p/1132827#M910616</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Two different Dates</title>
      <link>https://community.qlik.com/t5/QlikView/Two-different-Dates/m-p/1132828#M910617</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use Canonical Calendar here: &lt;A href="https://community.qlik.com/qlik-blogpost/3585"&gt;Canonical Date&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2016 14:37:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Two-different-Dates/m-p/1132828#M910617</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-06-16T14:37:13Z</dc:date>
    </item>
    <item>
      <title>Re: Two different Dates</title>
      <link>https://community.qlik.com/t5/QlikView/Two-different-Dates/m-p/1132829#M910618</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Data:&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;&amp;nbsp; OrderNumber,&lt;/P&gt;&lt;P&gt;&amp;nbsp; OrderDate,&lt;/P&gt;&lt;P&gt;&amp;nbsp; DeliveryDate;&lt;/P&gt;&lt;P&gt;From TableName;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Map_OrderDate:&lt;/P&gt;&lt;P&gt;Mapping Load OrderNumber, OrderDate Resident Data;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Map_DeliveryDate:&lt;/P&gt;&lt;P&gt;Mapping Load OrderNumber, DeliveryDate Resident Data;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BridgeTable:&lt;/P&gt;&lt;P&gt;Load OrderNumber, ApplyMap('Map_OrderDate', OrderNumber, Null()) as CanonicalDate, 'Created' as Type Resident Data;&lt;/P&gt;&lt;P&gt;Load OrderNumber, ApplyMap('Map_DeliveryDate', OrderNumber, Null()) as CanonicalDate, 'Delivered' as Type Resident Data;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Left Join (BridgeTable)&lt;/P&gt;&lt;P&gt;Load Distinct CanonicalDate, Month(CanonicalDate) as Month, Year(CanonicalDate) as Year Resident BridgeTable;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Straight Table&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Dimension&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;CanonicalDate&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Expression&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;COUNT({&amp;lt;Type = {'Created'}&amp;gt;}DISTINCT OrderNumber)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;COUNT({&amp;lt;Type = {'Delivered'}&amp;gt;}DISTINCT OrderNumber)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Use the same logic in your app.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2016 14:39:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Two-different-Dates/m-p/1132829#M910618</guid>
      <dc:creator>MK_QSL</dc:creator>
      <dc:date>2016-06-16T14:39:06Z</dc:date>
    </item>
  </channel>
</rss>

