<?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: Identify removed records in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Identify-removed-records/m-p/2512760#M105248</link>
    <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/49432"&gt;@Chanty4u&lt;/a&gt;&amp;nbsp;&lt;A href="https://community.qlik.com/t5/user/viewprofilepage/user-id/2751" target="_blank" rel="noopener"&gt;@vinieme12&amp;nbsp; - any thoughts on this ?&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 02 Apr 2025 13:49:15 GMT</pubDate>
    <dc:creator>BI_Dev</dc:creator>
    <dc:date>2025-04-02T13:49:15Z</dc:date>
    <item>
      <title>Identify removed records</title>
      <link>https://community.qlik.com/t5/App-Development/Identify-removed-records/m-p/2512382#M105203</link>
      <description>&lt;P&gt;&lt;A href="https://community.qlik.com/t5/user/viewprofilepage/user-id/2751" target="_blank" rel="noopener"&gt;@vinieme12&lt;/A&gt;&amp;nbsp;Hi - I have a similar requirement as&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/t5/Visualization-and-Usability/Identify-removed-records/m-p/1922299" target="_blank" rel="noopener"&gt;https://community.qlik.com/t5/Visualization-and-Usability/Identify-removed-records/m-p/1922299&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;where I have to show #of records added &amp;amp; terminated each month.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="BI_Dev_0-1743435085715.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/179153i47D8EB47CF3C4A12/image-size/medium?v=v2&amp;amp;px=400" role="button" title="BI_Dev_0-1743435085715.png" alt="BI_Dev_0-1743435085715.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;using this if(ID_2=Peek(ID_2) and isnull(check),'Terminated','Added') as status&lt;BR /&gt;&lt;BR /&gt;Here ID 401 is only added in 3/1/2025 - However it is showing Added &amp;amp; Terminated from Dec, Jan, Feb as well. How can I fix that ?&lt;BR /&gt;&lt;BR /&gt;386 is Terminated in Feb and that is showing correct.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you much.&lt;/P&gt;&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/6148"&gt;@rwunderlich&lt;/a&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/49432"&gt;@Chanty4u&lt;/a&gt;&amp;nbsp;@&lt;A href="https://community.qlik.com/qlik-users/171708" target="_blank" rel="noopener"&gt;stalwar1 @&lt;/A&gt;&lt;A href="https://community.qlik.com/t5/user/viewprofilepage/user-id/1326" target="_self"&gt;&lt;SPAN class=""&gt;Lech_Miszkiewicz&lt;/SPAN&gt;&lt;/A&gt; &lt;A href="https://community.qlik.com/t5/user/viewprofilepage/user-id/2751" target="_blank" rel="noopener"&gt;@vinieme12&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 07 Apr 2025 15:17:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Identify-removed-records/m-p/2512382#M105203</guid>
      <dc:creator>BI_Dev</dc:creator>
      <dc:date>2025-04-07T15:17:10Z</dc:date>
    </item>
    <item>
      <title>Re: Identify removed records</title>
      <link>https://community.qlik.com/t5/App-Development/Identify-removed-records/m-p/2512402#M105211</link>
      <description>&lt;P&gt;Try this&amp;nbsp;&lt;/P&gt;&lt;P&gt;TempData:&lt;/P&gt;&lt;P&gt;LOAD&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; ID_2,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; Month,&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; check&lt;/P&gt;&lt;P&gt;FROM YourSource&lt;/P&gt;&lt;P&gt;ORDER BY ID_2, Month;&lt;/P&gt;&lt;P&gt;FinalData:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; ID_2,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; Month,&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; check,&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; If(ID_2 = Peek(ID_2) AND isnull(check), 'Terminated', 'Added') AS status&lt;/P&gt;&lt;P&gt;RESIDENT TempData&lt;/P&gt;&lt;P&gt;ORDER BY ID_2, Month;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 31 Mar 2025 18:29:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Identify-removed-records/m-p/2512402#M105211</guid>
      <dc:creator>Chanty4u</dc:creator>
      <dc:date>2025-03-31T18:29:26Z</dc:date>
    </item>
    <item>
      <title>Re: Identify removed records</title>
      <link>https://community.qlik.com/t5/App-Development/Identify-removed-records/m-p/2512421#M105215</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="BI_Dev_1-1743452705546.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/179161iA593E4468CEF8E5E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="BI_Dev_1-1743452705546.png" alt="BI_Dev_1-1743452705546.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;That did not work&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 31 Mar 2025 20:25:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Identify-removed-records/m-p/2512421#M105215</guid>
      <dc:creator>BI_Dev</dc:creator>
      <dc:date>2025-03-31T20:25:11Z</dc:date>
    </item>
    <item>
      <title>Re: Identify removed records</title>
      <link>https://community.qlik.com/t5/App-Development/Identify-removed-records/m-p/2512760#M105248</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/49432"&gt;@Chanty4u&lt;/a&gt;&amp;nbsp;&lt;A href="https://community.qlik.com/t5/user/viewprofilepage/user-id/2751" target="_blank" rel="noopener"&gt;@vinieme12&amp;nbsp; - any thoughts on this ?&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Apr 2025 13:49:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Identify-removed-records/m-p/2512760#M105248</guid>
      <dc:creator>BI_Dev</dc:creator>
      <dc:date>2025-04-02T13:49:15Z</dc:date>
    </item>
  </channel>
</rss>

