<?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: Date problem in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Date-problem/m-p/254219#M1194302</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you ! It works. But how can I show just unique value instead of having several times the same date and in the graph only one point for the month (mm-yyyy) instead of several points for every days in the month (dd-mm-yyyy) ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 05 Jul 2011 12:56:20 GMT</pubDate>
    <dc:creator />
    <dc:date>2011-07-05T12:56:20Z</dc:date>
    <item>
      <title>Date problem</title>
      <link>https://community.qlik.com/t5/QlikView/Date-problem/m-p/254212#M1194295</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello everyone !&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have two types of date : an enter date and an exit date ( DD-MM-YYYY ). I'd like to merge this two cells and have this display MM-YYYY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I do ??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you &lt;span class="lia-unicode-emoji" title=":grinning_face_with_big_eyes:"&gt;😃&lt;/span&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Jul 2011 15:02:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-problem/m-p/254212#M1194295</guid>
      <dc:creator />
      <dc:date>2011-07-04T15:02:23Z</dc:date>
    </item>
    <item>
      <title>Re: Date problem</title>
      <link>https://community.qlik.com/t5/QlikView/Date-problem/m-p/254213#M1194296</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Annie,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;second part of your question is easy: use date function to format the output:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;date ( expression [,format-code])&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;e.g. in any expression&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=date( Date, 'MM-YYYY')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;{"Date" is a field with date format, you may need to parse your dates into correct format first, depending on your system settings}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To receive your merged list, where are the two dates located, in separate tables? &lt;/P&gt;&lt;P&gt;I would go for adding the merge to the load script. Could you post an excerpt of your current script?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Stefan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Jul 2011 16:19:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-problem/m-p/254213#M1194296</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2011-07-04T16:19:15Z</dc:date>
    </item>
    <item>
      <title>Re: Date problem</title>
      <link>https://community.qlik.com/t5/QlikView/Date-problem/m-p/254214#M1194297</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here are my two tables :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD @1, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; @2, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; @3, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; @4,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; @5 as [Date_enter]&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;[...]&lt;/P&gt;&lt;P&gt;(biff, no labels, table is In$);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD @1, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; @2, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; @3,&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; @4, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; @5 as [Date_exit]&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;[...]&lt;/P&gt;&lt;P&gt;(biff, no labels, table is Out$);&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jul 2011 08:04:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-problem/m-p/254214#M1194297</guid>
      <dc:creator />
      <dc:date>2011-07-05T08:04:23Z</dc:date>
    </item>
    <item>
      <title>Re: Date problem</title>
      <link>https://community.qlik.com/t5/QlikView/Date-problem/m-p/254215#M1194298</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Annie,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it always depends on what you want to achieve wit your date.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you just want to merge the two dates into one field, and you don't need the other fields (@1 to @4),&lt;/P&gt;&lt;P&gt;I think you can concatenate the two tables:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Date:&lt;/P&gt;&lt;P&gt;LOAD &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; @5 as Date&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;[...]&lt;/P&gt;&lt;P&gt;(biff, no labels, table is In$);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONCATENATE (Date) LOAD&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; @5 as Date&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;[...]&lt;/P&gt;&lt;P&gt;(biff, no labels, table is Out$);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;{If number of fields and fieldnames are identical, in fact you don't need the CONCATENATE, but I think this makes it more clear}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then use above expression to format the output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But I guess you want to preserve the original enter and exit date data.&lt;/P&gt;&lt;P&gt;Then you can use a separate table and reuse the already read data:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EnterDate:&lt;/P&gt;&lt;P&gt;LOAD @1, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; @2, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; @3, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; @4,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; @5 as [Date_enter]&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;[...]&lt;/P&gt;&lt;P&gt;(biff, no labels, table is In$);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="min-height: 8pt; height: 8pt;"&gt;ExitDate:&lt;/P&gt;&lt;P&gt;LOAD @1, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; @2, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; @3,&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; @4, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; @5 as [Date_exit]&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;[...]&lt;/P&gt;&lt;P&gt;(biff, no labels, table is Out$);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Date:&lt;/P&gt;&lt;P&gt;Load &lt;/P&gt;&lt;P&gt;//[Date_enter],&lt;/P&gt;&lt;P&gt;[Date_enter] as Date&lt;/P&gt;&lt;P&gt;resident EnterDate;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Concatenate (Date) Load &lt;/P&gt;&lt;P&gt;//[Date_exit],&lt;/P&gt;&lt;P&gt;[Date_exit] as Date&lt;/P&gt;&lt;P&gt;resident ExitDate;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you remove the comments from the lines, your Date data will be associated with your enter resp. exit dates (so if you select a date, the corressponding enter resp exit dates are also selected). If you leave the comments in, you get an not associated table (data island).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps,&lt;/P&gt;&lt;P&gt;Stefan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jul 2011 10:10:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-problem/m-p/254215#M1194298</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2011-07-05T10:10:23Z</dc:date>
    </item>
    <item>
      <title>Re: Date problem</title>
      <link>https://community.qlik.com/t5/QlikView/Date-problem/m-p/254216#M1194299</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If the @1, @2, etc mean the same thing in both tables it can be like this:&lt;/P&gt;&lt;P&gt;( It will rename both fields to the same name and format them. You will need to use a flag to know if it is 'Enter' or 'Exit' event)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table:&lt;/P&gt;&lt;P&gt;LOAD @1, 'Enter' as Fact,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; @2, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; @3, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; @4,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; date(@5,'MM/YYYY') as [Date]&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;[...]&lt;/P&gt;&lt;P&gt;(biff, no labels, table is In$);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="min-height: 8pt; height: 8pt;"&gt; CONCATENATE(Table) //Since all the fields are the same... the concanate is not actually necessary here&lt;/P&gt;&lt;P&gt;LOAD @1, 'Exit' as Fact&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; @2, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; @3,&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; @4, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; date(@5,'MM/YYYY') as [Date]&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;[...]&lt;/P&gt;&lt;P&gt;(biff, no labels, table is Out$);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Erich&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jul 2011 10:14:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-problem/m-p/254216#M1194299</guid>
      <dc:creator>erichshiino</dc:creator>
      <dc:date>2011-07-05T10:14:03Z</dc:date>
    </item>
    <item>
      <title>Re: Date problem</title>
      <link>https://community.qlik.com/t5/QlikView/Date-problem/m-p/254217#M1194300</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Everything you write helps me. But I have some people who enter at the date_enter and people who leave at date_exit. And I want to make 2 graph ( enter &amp;amp; exit ). When I choose a date (mm-yyyy), it shows me on the both graph the enters and exits.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jul 2011 12:35:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-problem/m-p/254217#M1194300</guid>
      <dc:creator />
      <dc:date>2011-07-05T12:35:49Z</dc:date>
    </item>
    <item>
      <title>Re: Date problem</title>
      <link>https://community.qlik.com/t5/QlikView/Date-problem/m-p/254218#M1194301</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Annie,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;that should not be a problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Either follow my last suggestion (uncomment lines), use a list box for date with my expression and a graph with =count(enter_date) &lt;/P&gt;&lt;P&gt;and&lt;/P&gt;&lt;P&gt;=count (exit_date)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;as expressions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or use Erichs suggestions with a listbox for date and &lt;/P&gt;&lt;P&gt;Fact as dimension and count(Date) as expression.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think this should be enough.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Stefan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jul 2011 12:41:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-problem/m-p/254218#M1194301</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2011-07-05T12:41:21Z</dc:date>
    </item>
    <item>
      <title>Re: Date problem</title>
      <link>https://community.qlik.com/t5/QlikView/Date-problem/m-p/254219#M1194302</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you ! It works. But how can I show just unique value instead of having several times the same date and in the graph only one point for the month (mm-yyyy) instead of several points for every days in the month (dd-mm-yyyy) ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jul 2011 12:56:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-problem/m-p/254219#M1194302</guid>
      <dc:creator />
      <dc:date>2011-07-05T12:56:20Z</dc:date>
    </item>
    <item>
      <title>Re: Date problem</title>
      <link>https://community.qlik.com/t5/QlikView/Date-problem/m-p/254220#M1194303</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Annie,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;well, you should only have two bars in your graph in both cases if you followed my description (overall counts)...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want the counts per month in your graph, you could add a calculated dimension in my case:&lt;/P&gt;&lt;P&gt;﻿=date(Date, 'MM-YYY')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or in Erichs case add Date as dimension, fact as second dimension.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you post your example file here (there is an option in advanced editor to add files), I think we can work it out pretty fast.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Stefan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jul 2011 13:14:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-problem/m-p/254220#M1194303</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2011-07-05T13:14:05Z</dc:date>
    </item>
    <item>
      <title>Re: Date problem</title>
      <link>https://community.qlik.com/t5/QlikView/Date-problem/m-p/254221#M1194304</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here is my qlikview example&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jul 2011 13:38:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-problem/m-p/254221#M1194304</guid>
      <dc:creator />
      <dc:date>2011-07-05T13:38:57Z</dc:date>
    </item>
    <item>
      <title>Re: Date problem</title>
      <link>https://community.qlik.com/t5/QlikView/Date-problem/m-p/254222#M1194305</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Annie,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the problem is that QlikView added a synthetic key because Name and Lastname are identical in tables Exit and Enter (you can see this in Table View CTRL-T).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you have a data scheme like this, I think Erichs approach is more practicable since it does not only merge the date field, but also the Names and Lastname and add a flag for the event.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the graph, either use two dimesions (first Date, then Fact) or if you want two graphs,&lt;/P&gt;&lt;P&gt;use &lt;/P&gt;&lt;P&gt;=sum(if (Fact='Enter',1))&lt;/P&gt;&lt;P&gt;resp.&lt;/P&gt;&lt;P&gt;=sum(if (Fact='Exit',1))&lt;/P&gt;&lt;P&gt;as expression (and only Date as dimension).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't have the xls Files, so I couldn't adapt your sample and try, but I think this should work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Stefan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jul 2011 13:57:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-problem/m-p/254222#M1194305</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2011-07-05T13:57:25Z</dc:date>
    </item>
    <item>
      <title>Re: Date problem</title>
      <link>https://community.qlik.com/t5/QlikView/Date-problem/m-p/254223#M1194306</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm really really sorry.. it doesn't work... I add my excel file. Thank you very very much for your patience and your help !&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jul 2011 14:15:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-problem/m-p/254223#M1194306</guid>
      <dc:creator />
      <dc:date>2011-07-05T14:15:43Z</dc:date>
    </item>
    <item>
      <title>Re: Date problem</title>
      <link>https://community.qlik.com/t5/QlikView/Date-problem/m-p/254224#M1194307</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Annie,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I worked on your example, please have a look.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I used Erichs approach for the load script, but used an additional monthstart for the dates to limit all events in a month to the same date.&lt;/P&gt;&lt;P&gt;(That's why you had more than one list entries before). If you need the detail date data, Remove this monthstart from the script and add it to the list box / graph calculated dimensions).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I added also the expressions for the graphs to show the appropriate events only.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Stefan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jul 2011 14:45:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-problem/m-p/254224#M1194307</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2011-07-05T14:45:21Z</dc:date>
    </item>
    <item>
      <title>Re: Date problem</title>
      <link>https://community.qlik.com/t5/QlikView/Date-problem/m-p/254225#M1194308</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you so much Stefan ! That's exactly what I want !&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jul 2011 15:01:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-problem/m-p/254225#M1194308</guid>
      <dc:creator />
      <dc:date>2011-07-05T15:01:03Z</dc:date>
    </item>
  </channel>
</rss>

