<?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 Issue with a date range implementation in Qlikview in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Issue-with-a-date-range-implementation-in-Qlikview/m-p/159420#M34068</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;John -&lt;/P&gt;&lt;P&gt;I will not have orders for all the calendar dates, in which case only the order dates will be highlighted in the calendar object, if i go by the solution proposed by you. Besides, I have an explicit customer requirement to provide two date filters with all dates enabled, yet only show total of orders for products which are sold by between the selected From and To Date.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 19 Aug 2009 15:15:49 GMT</pubDate>
    <dc:creator />
    <dc:date>2009-08-19T15:15:49Z</dc:date>
    <item>
      <title>Issue with a date range implementation in Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/Issue-with-a-date-range-implementation-in-Qlikview/m-p/159417#M34065</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a date range implementation requirement as follows. I need to show a summary table with Products / No of orders based on certain from and to date on orders. The from and to date should be based on calendar object, which is selectable. Based on some previous posts on this tipic here is what i have done so far,&lt;/P&gt;&lt;P&gt;a. I added a slider/calendar object&lt;/P&gt;&lt;P&gt;b. Added 2 variables date_hi and date_lo and set them a values ( 1/Jan/2009) (31/Jan/2009).&lt;/P&gt;&lt;P&gt;c. Assigned these values to calendar object&lt;/P&gt;&lt;P&gt;d. Created a calculated dimension and used a if condition if( orderdate &amp;lt; date_lo or orderdate &amp;gt; date_hi, null , date(orderdate)&lt;/P&gt;&lt;P&gt;e. Finally, used this calculated dimension in my Chart object ( of type Table).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Problem faced:&lt;/STRONG&gt; This shows me 3 columns in my table. Product / Order date/ No of orders. What I would like is data consolidated into 2 columns Product/No of Orders between the 2 dates selected from the date filter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Aug 2009 13:40:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Issue-with-a-date-range-implementation-in-Qlikview/m-p/159417#M34065</guid>
      <dc:creator />
      <dc:date>2009-08-18T13:40:56Z</dc:date>
    </item>
    <item>
      <title>Issue with a date range implementation in Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/Issue-with-a-date-range-implementation-in-Qlikview/m-p/159418#M34066</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maybe I'm missing something, but this sounds like very basic QlikView functionality, so I think it's a lot simpler than what you're trying to do:&lt;/P&gt;&lt;P style="padding-left:30px;"&gt;a. Add a multi-value slider/calendar object for orderdate.&lt;BR /&gt;b. Select a date range.&lt;BR /&gt;c. Use product as the dimension.&lt;BR /&gt;d. Use count(distinct order) or whatever your field is as the expression.&lt;/P&gt;&lt;P&gt;Does that not produce the desired result?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Aug 2009 00:48:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Issue-with-a-date-range-implementation-in-Qlikview/m-p/159418#M34066</guid>
      <dc:creator>johnw</dc:creator>
      <dc:date>2009-08-19T00:48:14Z</dc:date>
    </item>
    <item>
      <title>Issue with a date range implementation in Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/Issue-with-a-date-range-implementation-in-Qlikview/m-p/159419#M34067</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;In addition to the last solution you can try the following:&lt;/P&gt;&lt;P&gt;Create a straight table&lt;/P&gt;&lt;P&gt;Add dimension Products&lt;/P&gt;&lt;P&gt;Add following expression:&lt;/P&gt;&lt;P&gt;=count(if( orderdate &amp;lt; date_lo or orderdate &amp;gt; date_hi, null , OrderID)&lt;/P&gt;&lt;P&gt;Note that OrderID is the key for the orders.&lt;/P&gt;&lt;P&gt;Good luck.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Aug 2009 04:19:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Issue-with-a-date-range-implementation-in-Qlikview/m-p/159419#M34067</guid>
      <dc:creator>tabletuner</dc:creator>
      <dc:date>2009-08-19T04:19:20Z</dc:date>
    </item>
    <item>
      <title>Issue with a date range implementation in Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/Issue-with-a-date-range-implementation-in-Qlikview/m-p/159420#M34068</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;John -&lt;/P&gt;&lt;P&gt;I will not have orders for all the calendar dates, in which case only the order dates will be highlighted in the calendar object, if i go by the solution proposed by you. Besides, I have an explicit customer requirement to provide two date filters with all dates enabled, yet only show total of orders for products which are sold by between the selected From and To Date.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Aug 2009 15:15:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Issue-with-a-date-range-implementation-in-Qlikview/m-p/159420#M34068</guid>
      <dc:creator />
      <dc:date>2009-08-19T15:15:49Z</dc:date>
    </item>
    <item>
      <title>Issue with a date range implementation in Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/Issue-with-a-date-range-implementation-in-Qlikview/m-p/159421#M34069</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you. This worked, appreciate your inputs.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Aug 2009 15:24:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Issue-with-a-date-range-implementation-in-Qlikview/m-p/159421#M34069</guid>
      <dc:creator />
      <dc:date>2009-08-19T15:24:23Z</dc:date>
    </item>
  </channel>
</rss>

