<?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 Re: Comparing between 2 periods (date and time) in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Comparing-between-2-periods-date-and-time/m-p/1060167#M930531</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;Check this,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BY Creating Four Variables,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;vDateFrom1,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;vDateto1,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For first period,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;vDateFrom2,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;vDateto2,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For Second Period,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Using the Calendar objects and by selecting the required Dates for Period 1 and Period 2 ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;amp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With this Expressions in charts or Tables:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="sql" __jive_macro_name="code" class="jive_macro_code jive_text_macro _jivemacro_uid_14577747416125938" jivemacro_uid="_14577747416125938"&gt;
&lt;P&gt;=Sum({&amp;lt;Date={'&amp;gt;=$(=Date(vDateFrom1))&amp;lt;=$(=Date(vDateto1))'}&amp;gt;}Sales)&lt;/P&gt;


&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Similarly&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="java" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_14577747606095609 jive_text_macro" jivemacro_uid="_14577747606095609"&gt;
&lt;P&gt;=Sum({&amp;lt;Date={'&amp;gt;=$(=Date(vDateFrom2))&amp;lt;=$(=Date(vDateto2))'}&amp;gt;}Sales)&lt;/P&gt;


&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can acheive like this,&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="117767" alt="Comparing between 2 periods (date and time)-209242.PNG" class="jive-image image-1" src="/legacyfs/online/117767_Comparing between 2 periods (date and time)-209242.PNG" style="height: 209px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Else another way with out using calendar Object ,You can go with Slider Object too.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps,&lt;/P&gt;&lt;P&gt;PFA,&lt;/P&gt;&lt;P&gt;Hirish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 12 Mar 2016 09:29:28 GMT</pubDate>
    <dc:creator>HirisH_V7</dc:creator>
    <dc:date>2016-03-12T09:29:28Z</dc:date>
    <item>
      <title>Comparing between 2 periods (date and time)</title>
      <link>https://community.qlik.com/t5/QlikView/Comparing-between-2-periods-date-and-time/m-p/1060166#M930530</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Everyone,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As you can see, I want to be able to select &lt;STRONG&gt;2 periods of date and time to compare&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for example, comparing the &lt;STRONG&gt;2 periods btwn 01/01/2016 to 12/01/2016 and 01/02/2016 to 11/02/2016 while I'am betwn 9h00 and 10h00.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to do so?&lt;/P&gt;&lt;P&gt;Should I create &lt;STRONG&gt;2 fact tables&lt;/STRONG&gt;, &lt;STRONG&gt;2 calendar dates and 2 time tables&lt;/STRONG&gt;?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then creating 4 variables; vFromDate1, vToDate1 and vFromDate2, vToDate2 ;each 2 triggering one calendar?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or could that be done with only one calendar with set analysis?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for example, sthing like this: (&lt;STRONG style="text-decoration: underline;"&gt;can you please verify the syntax with me?&lt;/STRONG&gt; I couldn't figure out how to do it)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;=Sum([Calendar date]={"&amp;gt;=date( $(vFromDate) ,'DD/MM/YYYY')&amp;amp;&amp;lt;=date( $(vToDate) ,'DD/MM/YYYY')"}}Sales)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you very much !&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/Comparing-between-2-periods-date-and-time/m-p/1060166#M930530</guid>
      <dc:creator>OmarBenSalem</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Comparing between 2 periods (date and time)</title>
      <link>https://community.qlik.com/t5/QlikView/Comparing-between-2-periods-date-and-time/m-p/1060167#M930531</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;Check this,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BY Creating Four Variables,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;vDateFrom1,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;vDateto1,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For first period,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;vDateFrom2,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;vDateto2,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For Second Period,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Using the Calendar objects and by selecting the required Dates for Period 1 and Period 2 ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;amp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With this Expressions in charts or Tables:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="sql" __jive_macro_name="code" class="jive_macro_code jive_text_macro _jivemacro_uid_14577747416125938" jivemacro_uid="_14577747416125938"&gt;
&lt;P&gt;=Sum({&amp;lt;Date={'&amp;gt;=$(=Date(vDateFrom1))&amp;lt;=$(=Date(vDateto1))'}&amp;gt;}Sales)&lt;/P&gt;


&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Similarly&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="java" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_14577747606095609 jive_text_macro" jivemacro_uid="_14577747606095609"&gt;
&lt;P&gt;=Sum({&amp;lt;Date={'&amp;gt;=$(=Date(vDateFrom2))&amp;lt;=$(=Date(vDateto2))'}&amp;gt;}Sales)&lt;/P&gt;


&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can acheive like this,&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="117767" alt="Comparing between 2 periods (date and time)-209242.PNG" class="jive-image image-1" src="/legacyfs/online/117767_Comparing between 2 periods (date and time)-209242.PNG" style="height: 209px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Else another way with out using calendar Object ,You can go with Slider Object too.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps,&lt;/P&gt;&lt;P&gt;PFA,&lt;/P&gt;&lt;P&gt;Hirish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 12 Mar 2016 09:29:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Comparing-between-2-periods-date-and-time/m-p/1060167#M930531</guid>
      <dc:creator>HirisH_V7</dc:creator>
      <dc:date>2016-03-12T09:29:28Z</dc:date>
    </item>
    <item>
      <title>Re: Comparing between 2 periods (date and time)</title>
      <link>https://community.qlik.com/t5/QlikView/Comparing-between-2-periods-date-and-time/m-p/1060168#M930532</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thank you for the reply but I 'm really confused !&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've done as you but I don't seem to get the right thing:&lt;/P&gt;&lt;P&gt;here is the result I'm having:&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/117759_Capture.PNG" style="height: 250px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;my data is in 01/01/2016 to 30/01/2016&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) When I choose from date 01 to 08 I have 0 as a result&lt;/P&gt;&lt;P&gt;2) when I reverse it from 08 to 01 I'll have 87918615 as result BUT when I change this to anystinh reversed, for example from 14 to 01, I'll be having the same thing and the same result .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Furthermore:&lt;/P&gt;&lt;P&gt;3) when I choose magasin as a dimension, nothing shows up in the table as shown in the picture above !&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what should I do please?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 12 Mar 2016 10:10:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Comparing-between-2-periods-date-and-time/m-p/1060168#M930532</guid>
      <dc:creator>OmarBenSalem</dc:creator>
      <dc:date>2016-03-12T10:10:43Z</dc:date>
    </item>
    <item>
      <title>Re: Comparing between 2 periods (date and time)</title>
      <link>https://community.qlik.com/t5/QlikView/Comparing-between-2-periods-date-and-time/m-p/1060169#M930533</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;IMG alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/117776_Capture.PNG" style="height: 251px; width: 620px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 12 Mar 2016 10:39:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Comparing-between-2-periods-date-and-time/m-p/1060169#M930533</guid>
      <dc:creator>OmarBenSalem</dc:creator>
      <dc:date>2016-03-12T10:39:59Z</dc:date>
    </item>
    <item>
      <title>Re: Comparing between 2 periods (date and time)</title>
      <link>https://community.qlik.com/t5/QlikView/Comparing-between-2-periods-date-and-time/m-p/1060170#M930534</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;Can&amp;nbsp; u post your Sample!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 12 Mar 2016 11:12:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Comparing-between-2-periods-date-and-time/m-p/1060170#M930534</guid>
      <dc:creator>HirisH_V7</dc:creator>
      <dc:date>2016-03-12T11:12:55Z</dc:date>
    </item>
    <item>
      <title>Re: Comparing between 2 periods (date and time)</title>
      <link>https://community.qlik.com/t5/QlikView/Comparing-between-2-periods-date-and-time/m-p/1060171#M930535</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It's way too big; thus I'm downloading it via google drive; and because my connexion is not that good; it might take a little while&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 12 Mar 2016 12:16:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Comparing-between-2-periods-date-and-time/m-p/1060171#M930535</guid>
      <dc:creator>OmarBenSalem</dc:creator>
      <dc:date>2016-03-12T12:16:24Z</dc:date>
    </item>
    <item>
      <title>Re: Comparing between 2 periods (date and time)</title>
      <link>https://community.qlik.com/t5/QlikView/Comparing-between-2-periods-date-and-time/m-p/1060172#M930536</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;please check&amp;nbsp; my&amp;nbsp; modified app in post above,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF you selected &lt;STRONG&gt;from date&lt;/STRONG&gt; once means , You cannot select the date that is below the &lt;STRONG&gt;From date&lt;/STRONG&gt; in &lt;STRONG&gt;to date&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this is what you require,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PFA,&lt;/P&gt;&lt;P&gt;Hirish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 12 Mar 2016 12:37:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Comparing-between-2-periods-date-and-time/m-p/1060172#M930536</guid>
      <dc:creator>HirisH_V7</dc:creator>
      <dc:date>2016-03-12T12:37:11Z</dc:date>
    </item>
    <item>
      <title>Re: Comparing between 2 periods (date and time)</title>
      <link>https://community.qlik.com/t5/QlikView/Comparing-between-2-periods-date-and-time/m-p/1060173#M930537</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Even when&amp;nbsp; I did that; nothing has really changed; I'm always having&amp;nbsp; when I select fromDate &amp;lt; ToDate&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But when I select the fromDate &amp;gt; ToDate I'll be having the same result no matter what dates I choose; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/117777_Capture.PNG" style="height: 253px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I really I'm confused (the sample is still loading...youpi !)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 12 Mar 2016 13:37:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Comparing-between-2-periods-date-and-time/m-p/1060173#M930537</guid>
      <dc:creator>OmarBenSalem</dc:creator>
      <dc:date>2016-03-12T13:37:23Z</dc:date>
    </item>
    <item>
      <title>Re: Comparing between 2 periods (date and time)</title>
      <link>https://community.qlik.com/t5/QlikView/Comparing-between-2-periods-date-and-time/m-p/1060174#M930538</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;here is a link to my sample; hope you'll be willing to help me, I'm relly in need ! thank you very much!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://drive.google.com/file/d/0B9dH1D91rj-4VnhYZTVzTjlGWDA/view?usp=sharing" title="https://drive.google.com/file/d/0B9dH1D91rj-4VnhYZTVzTjlGWDA/view?usp=sharing"&gt;historique.zip - Google Drive&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 12 Mar 2016 14:38:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Comparing-between-2-periods-date-and-time/m-p/1060174#M930538</guid>
      <dc:creator>OmarBenSalem</dc:creator>
      <dc:date>2016-03-12T14:38:10Z</dc:date>
    </item>
    <item>
      <title>Re: Comparing between 2 periods (date and time)</title>
      <link>https://community.qlik.com/t5/QlikView/Comparing-between-2-periods-date-and-time/m-p/1060175#M930539</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;I just checked your App and Made some changes,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Go to&amp;nbsp; -&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;To Date 1&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;Min Value -&amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;STRONG&gt; =Date(Min({1} Date(vDateFrom1)))&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Similarly,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;STRONG&gt;To Date 2&lt;/STRONG&gt; &lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Min Value -&amp;gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; =Date(Min({1} Date(vDateFrom2)))&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Its working fine.&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;You have selected for some Dates Ranges where there is no Data,&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&amp;amp; &lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;In second &lt;STRONG&gt;Period 2&lt;/STRONG&gt; Table, Dimension also should be same as &lt;STRONG&gt;Period 1&lt;/STRONG&gt; -&lt;STRONG&gt;magasin&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;See this,&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;IMG alt="Comparing between 2 periods (date and time) 2-209242.PNG" class="jive-image image-1" src="/legacyfs/online/117775_Comparing between 2 periods (date and time) 2-209242.PNG" style="height: 273px; width: 620px;" /&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;HTH,&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Hirish&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 13 Mar 2016 07:12:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Comparing-between-2-periods-date-and-time/m-p/1060175#M930539</guid>
      <dc:creator>HirisH_V7</dc:creator>
      <dc:date>2016-03-13T07:12:50Z</dc:date>
    </item>
    <item>
      <title>Re: Comparing between 2 periods (date and time)</title>
      <link>https://community.qlik.com/t5/QlikView/Comparing-between-2-periods-date-and-time/m-p/1060176#M930540</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;Please have a selection with the field Date Ticket; you'll then see that I have data between 10/01/2016 and 30/01/2016&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thus, I don't understand why have such a result (in 2013) ! and when I try to select dates in 2016 I always have 0 as a result !&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/117789_Capture.PNG" style="height: 269px; width: 620px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 13 Mar 2016 10:36:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Comparing-between-2-periods-date-and-time/m-p/1060176#M930540</guid>
      <dc:creator>OmarBenSalem</dc:creator>
      <dc:date>2016-03-13T10:36:21Z</dc:date>
    </item>
    <item>
      <title>Re: Comparing between 2 periods (date and time)</title>
      <link>https://community.qlik.com/t5/QlikView/Comparing-between-2-periods-date-and-time/m-p/1060177#M930541</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Now, when I revert to Date_Ticket(the date of the fact table) instead of Calendar_Date(the date of the master calendar I've created with the Date_Ticket like this:&lt;/P&gt;&lt;P&gt;in the fact table : AutoNumber(Date_Ticket, '%Date ID') as [%Date ID]&lt;/P&gt;&lt;P&gt;in the master calendar: AutoNumber([Calendar date], '%Date ID') as [%Date ID] )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'll have accurate results ! But why can't I have the same results with Calendar Date I've been using in the simple comparisons (WTD MTD and so on) and having accurate results?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 13 Mar 2016 11:14:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Comparing-between-2-periods-date-and-time/m-p/1060177#M930541</guid>
      <dc:creator>OmarBenSalem</dc:creator>
      <dc:date>2016-03-13T11:14:09Z</dc:date>
    </item>
    <item>
      <title>Re: Comparing between 2 periods (date and time)</title>
      <link>https://community.qlik.com/t5/QlikView/Comparing-between-2-periods-date-and-time/m-p/1060178#M930542</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi omar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Make a sample app with some sample data and Mention your Output required.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope that way will be easy to get a desired result.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HTH,&lt;/P&gt;&lt;P&gt;Hirish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 13 Mar 2016 12:36:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Comparing-between-2-periods-date-and-time/m-p/1060178#M930542</guid>
      <dc:creator>HirisH_V7</dc:creator>
      <dc:date>2016-03-13T12:36:29Z</dc:date>
    </item>
  </channel>
</rss>

