<?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: Delete record in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Delete-record/m-p/1458803#M794329</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;FYI...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data_temp:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;Date(Max(Date#(MONTHYEAR,'MMYYYY')),'MMYYYY')&amp;nbsp; as MaxDate&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;&lt;D&gt;&lt;/D&gt;&lt;/P&gt;&lt;P&gt;(qvd);&lt;/P&gt;&lt;P&gt;LET vMaxYear=Peek('MaxDate',0,'Data_temp');&lt;/P&gt;&lt;P&gt;DROP Table Data_temp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Employees:&lt;/P&gt;&lt;P&gt;LOAD * Inline &lt;SPAN style="font-size: 10pt;"&gt;[&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;ID, NAME, MONTHYEAR, TIME, AGE&lt;/P&gt;&lt;P&gt;3, Phill, 022018, 23:02:25, 28&lt;/P&gt;&lt;P&gt;6, Joe, 022018, 15:15:15, 30&lt;/P&gt;&lt;P&gt;]&lt;/P&gt;&lt;P&gt;Where Date#(MONTHYEAR)&amp;gt;$(vMaxYear);&lt;/P&gt;&lt;P&gt;Concatenate(&lt;SPAN style="font-size: 13.3333px;"&gt;Employees)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;LOAD * Inline&lt;/P&gt;&lt;P&gt;[&lt;/P&gt;&lt;P&gt;ID, NAME, MONTHYEAR, TIME, AGE&lt;/P&gt;&lt;P&gt;1, Ned, 012018, 22:00:13, 32&lt;/P&gt;&lt;P&gt;2, George, 012018, 22:18:45,&lt;/P&gt;&lt;P&gt;3, Phill, 012018, 23:02:25,&lt;/P&gt;&lt;P&gt;4, Lucas, 012018, 23:15:00, 19&lt;/P&gt;&lt;P&gt;5, Fred, 012018, 23:55:59, 28&lt;/P&gt;&lt;P&gt;]&lt;/P&gt;&lt;P&gt;Where NOT Exists(ID);&lt;/P&gt;&lt;P&gt;STORE Employees into D:\QVW Files\Employees.qvd(qvd);&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 04 Jan 2018 12:07:24 GMT</pubDate>
    <dc:creator>mdmukramali</dc:creator>
    <dc:date>2018-01-04T12:07:24Z</dc:date>
    <item>
      <title>Delete record</title>
      <link>https://community.qlik.com/t5/QlikView/Delete-record/m-p/1458801#M794327</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi community,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need drop a record in a table. Explain me with a example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have this table like history:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ID, NAME, MONTHYEAR, TIME, AGE&lt;/P&gt;&lt;P&gt;1, Ned, 012018, 22:00:13, 32,&lt;/P&gt;&lt;P&gt;2, George, 012018, 22:18:45, &lt;STRONG&gt;null&lt;/STRONG&gt;,&lt;/P&gt;&lt;P&gt;3, Phill, 012018, 23:02:25, &lt;STRONG&gt;null&lt;/STRONG&gt;,&lt;/P&gt;&lt;P&gt;4, Lucas, 012018, 23:15:00, 19,&lt;/P&gt;&lt;P&gt;5, Fred, 012018, 23:55:59, 28;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In latest load, I receive the age of Fred, and must update the row. Insert new record:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ID, NAME, MONTHYEAR, TIME, AGE&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;3, Phill, 022018, 23:02:25, 28,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;6. Joe, 022018, 15:15:15, 30;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And now must drop the record of this name with age null.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The expected result:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ID, NAME, MONTHYEAR, TIME, AGE&lt;/P&gt;&lt;P&gt;1, Ned, 012018, 22:00:13, 32,&lt;/P&gt;&lt;P&gt;2, George, 012018, 22:18:45, &lt;STRONG&gt;null&lt;/STRONG&gt;,&lt;/P&gt;&lt;P&gt;3, Phill,&lt;STRONG&gt; 012018, &lt;/STRONG&gt;23:02:25,&lt;STRONG&gt; 28,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;4, Lucas, 022018, 23:15:00, 19,&lt;/P&gt;&lt;P&gt;5, Fred, 022018, 23:55:59, 28,&lt;/P&gt;&lt;P&gt;6, Joe, 022018, 15: 15:15, 30;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;All the process must be dinamic.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I must drop a record of history, and replace with new row.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help, please?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Very thanks.&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/Delete-record/m-p/1458801#M794327</guid>
      <dc:creator>mromrod22</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Delete record</title>
      <link>https://community.qlik.com/t5/QlikView/Delete-record/m-p/1458802#M794328</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It is type of Incremental load in qlikview.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/thread/262820"&gt;Incremental Load on QVD&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Jan 2018 11:08:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Delete-record/m-p/1458802#M794328</guid>
      <dc:creator>PrashantSangle</dc:creator>
      <dc:date>2018-01-04T11:08:38Z</dc:date>
    </item>
    <item>
      <title>Re: Delete record</title>
      <link>https://community.qlik.com/t5/QlikView/Delete-record/m-p/1458803#M794329</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;FYI...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data_temp:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;Date(Max(Date#(MONTHYEAR,'MMYYYY')),'MMYYYY')&amp;nbsp; as MaxDate&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;&lt;D&gt;&lt;/D&gt;&lt;/P&gt;&lt;P&gt;(qvd);&lt;/P&gt;&lt;P&gt;LET vMaxYear=Peek('MaxDate',0,'Data_temp');&lt;/P&gt;&lt;P&gt;DROP Table Data_temp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Employees:&lt;/P&gt;&lt;P&gt;LOAD * Inline &lt;SPAN style="font-size: 10pt;"&gt;[&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;ID, NAME, MONTHYEAR, TIME, AGE&lt;/P&gt;&lt;P&gt;3, Phill, 022018, 23:02:25, 28&lt;/P&gt;&lt;P&gt;6, Joe, 022018, 15:15:15, 30&lt;/P&gt;&lt;P&gt;]&lt;/P&gt;&lt;P&gt;Where Date#(MONTHYEAR)&amp;gt;$(vMaxYear);&lt;/P&gt;&lt;P&gt;Concatenate(&lt;SPAN style="font-size: 13.3333px;"&gt;Employees)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;LOAD * Inline&lt;/P&gt;&lt;P&gt;[&lt;/P&gt;&lt;P&gt;ID, NAME, MONTHYEAR, TIME, AGE&lt;/P&gt;&lt;P&gt;1, Ned, 012018, 22:00:13, 32&lt;/P&gt;&lt;P&gt;2, George, 012018, 22:18:45,&lt;/P&gt;&lt;P&gt;3, Phill, 012018, 23:02:25,&lt;/P&gt;&lt;P&gt;4, Lucas, 012018, 23:15:00, 19&lt;/P&gt;&lt;P&gt;5, Fred, 012018, 23:55:59, 28&lt;/P&gt;&lt;P&gt;]&lt;/P&gt;&lt;P&gt;Where NOT Exists(ID);&lt;/P&gt;&lt;P&gt;STORE Employees into D:\QVW Files\Employees.qvd(qvd);&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Jan 2018 12:07:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Delete-record/m-p/1458803#M794329</guid>
      <dc:creator>mdmukramali</dc:creator>
      <dc:date>2018-01-04T12:07:24Z</dc:date>
    </item>
  </channel>
</rss>

