<?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 Employee present or absent? in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Employee-present-or-absent/m-p/1111021#M18962</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;&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; My question is that i have data with months and their employee Id, i want to find the diffrence between the employee id with respect to months.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Eg. some of the employee Id is present in Jan and some of the employee Id are not there in Feb that means they have left the company,how will i come to know which employee left in that month?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 02 Jun 2016 07:49:54 GMT</pubDate>
    <dc:creator>Karahs</dc:creator>
    <dc:date>2016-06-02T07:49:54Z</dc:date>
    <item>
      <title>Employee present or absent?</title>
      <link>https://community.qlik.com/t5/App-Development/Employee-present-or-absent/m-p/1111021#M18962</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;&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; My question is that i have data with months and their employee Id, i want to find the diffrence between the employee id with respect to months.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Eg. some of the employee Id is present in Jan and some of the employee Id are not there in Feb that means they have left the company,how will i come to know which employee left in that month?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Jun 2016 07:49:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Employee-present-or-absent/m-p/1111021#M18962</guid>
      <dc:creator>Karahs</dc:creator>
      <dc:date>2016-06-02T07:49:54Z</dc:date>
    </item>
    <item>
      <title>Re: Employee present or absent?</title>
      <link>https://community.qlik.com/t5/App-Development/Employee-present-or-absent/m-p/1111022#M18963</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There are different approaches:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a) just make selections in month to see the existing and not existing id, or in an id to see the month with an relation&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;b) have a look at something like&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/thread/181464"&gt;New/Lost/Returning/Loyal Customers&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/thread/217995"&gt;Intervalmatch Count Open Items&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Jun 2016 08:22:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Employee-present-or-absent/m-p/1111022#M18963</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2016-06-02T08:22:14Z</dc:date>
    </item>
    <item>
      <title>Re: Employee present or absent?</title>
      <link>https://community.qlik.com/t5/App-Development/Employee-present-or-absent/m-p/1111023#M18964</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Emp:&lt;/P&gt;&lt;P&gt;Load *, MakeDate(Year,Month) As MonthDate;&lt;/P&gt;&lt;P&gt;Load * inline [&lt;/P&gt;&lt;P&gt;Employee,Year,Month&lt;/P&gt;&lt;P&gt;A,2016,1&lt;/P&gt;&lt;P&gt;B,2016,1&lt;/P&gt;&lt;P&gt;A,2016,2&lt;/P&gt;&lt;P&gt;B,2016,2&lt;/P&gt;&lt;P&gt;A,2016,3&lt;/P&gt;&lt;P&gt;A,2016,4&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LastMonthWorked:&lt;/P&gt;&lt;P&gt;Load *, Year(FinalDate) &amp;amp;'-'&amp;amp;Month(FinalDate) As FinalMonth;&lt;/P&gt;&lt;P&gt;Load &lt;/P&gt;&lt;P&gt;Employee, Max(MonthDate) As FinalDate&lt;/P&gt;&lt;P&gt;Resident Emp Group By Employee;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Result of LastMonthWorked is:&lt;BR /&gt;A&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2016-Apr&lt;/P&gt;&lt;P&gt;B&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2016-Feb&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Jun 2016 08:28:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Employee-present-or-absent/m-p/1111023#M18964</guid>
      <dc:creator>Ralf-Narfeldt</dc:creator>
      <dc:date>2016-06-02T08:28:41Z</dc:date>
    </item>
  </channel>
</rss>

