<?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 Compare two dates and return delays on dynamic table in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Compare-two-dates-and-return-delays-on-dynamic-table/m-p/525452#M480003</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello guys, merry Christmas to everyone.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm a B.I. beginner and I'm making some basic mistakes, i need a little help with the following situation:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a table of&amp;nbsp; project 'Deliverables' where there's among other fields, the 'delivered' date field and the 'baseline' date field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm trying to make a dynamic table that returns the deliverables that had been delivered with delay, so basically i need to bring those were delivered date &amp;gt; baseline date and I'm working on an expression for doing that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My expression had been working more or less like that (forget about provider task and year parts, they're ok):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=if([Provider Task %] = '100' and (Year([Deliverable Start Date]) &amp;gt;= 2013) and &lt;SPAN style="color: #800000;"&gt;(month([Task Baseline Finish Date]) &amp;lt; month([Deliverable Start Date])), [Deliverable Start Date])&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;were Deliverable Start Date can be considered the 'delivered' date, and the baseline finish date speaks for itself. Tough this formula has an issue, it gets only stuff that has been delayed for more then a month, deliverables that had been delayed within the same month are excluded from that logic. I tried the day() function but obviously it looked only for the days and didn't work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any ideas? Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 26 Dec 2013 11:49:43 GMT</pubDate>
    <dc:creator />
    <dc:date>2013-12-26T11:49:43Z</dc:date>
    <item>
      <title>Compare two dates and return delays on dynamic table</title>
      <link>https://community.qlik.com/t5/QlikView/Compare-two-dates-and-return-delays-on-dynamic-table/m-p/525452#M480003</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello guys, merry Christmas to everyone.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm a B.I. beginner and I'm making some basic mistakes, i need a little help with the following situation:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a table of&amp;nbsp; project 'Deliverables' where there's among other fields, the 'delivered' date field and the 'baseline' date field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm trying to make a dynamic table that returns the deliverables that had been delivered with delay, so basically i need to bring those were delivered date &amp;gt; baseline date and I'm working on an expression for doing that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My expression had been working more or less like that (forget about provider task and year parts, they're ok):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=if([Provider Task %] = '100' and (Year([Deliverable Start Date]) &amp;gt;= 2013) and &lt;SPAN style="color: #800000;"&gt;(month([Task Baseline Finish Date]) &amp;lt; month([Deliverable Start Date])), [Deliverable Start Date])&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;were Deliverable Start Date can be considered the 'delivered' date, and the baseline finish date speaks for itself. Tough this formula has an issue, it gets only stuff that has been delayed for more then a month, deliverables that had been delayed within the same month are excluded from that logic. I tried the day() function but obviously it looked only for the days and didn't work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any ideas? Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Dec 2013 11:49:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Compare-two-dates-and-return-delays-on-dynamic-table/m-p/525452#M480003</guid>
      <dc:creator />
      <dc:date>2013-12-26T11:49:43Z</dc:date>
    </item>
    <item>
      <title>Re: Compare two dates and return delays on dynamic table</title>
      <link>https://community.qlik.com/t5/QlikView/Compare-two-dates-and-return-delays-on-dynamic-table/m-p/525453#M480004</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;This should be enough to check that the delivered data is smaller than the task baseline finish date:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;=if([Provider Task %] = '100' and &lt;/SPAN&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #800000;"&gt;[Task Baseline Finish Date] &amp;lt; [Deliverable Start Date], [Deliverable Start Date])&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Dec 2013 12:47:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Compare-two-dates-and-return-delays-on-dynamic-table/m-p/525453#M480004</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2013-12-26T12:47:05Z</dc:date>
    </item>
  </channel>
</rss>

