<?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: How to use load script to remove wrong data entry ? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-use-load-script-to-remove-wrong-data-entry/m-p/1165549#M635368</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rudolf&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;after reading your last 2 line of your suggestion.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you got the point, i should have ask the I.T staff to correct the error at input , since it is wrong data entry. As you know people will the I.T staff ask me back if there are too many error he will not able to write script and correct the mistake. So in order not to make thing worst , since this is small issue , so i just try to solve it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Since this error not happen too often , and when it happen i will know it , so i can just correct it by adding script.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Paul &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 18 May 2016 07:16:46 GMT</pubDate>
    <dc:creator>paulyeo11</dc:creator>
    <dc:date>2016-05-18T07:16:46Z</dc:date>
    <item>
      <title>How to use load script to remove wrong data entry ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-use-load-script-to-remove-wrong-data-entry/m-p/1165541#M635360</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a raw data file , due to operator enter wrong year 2020 , now it affect my QV report. as i am not able to display all SOURCE compute by sales.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does any one here know how to remove the particular data year = 2020 to 2010 ? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Paul&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 May 2016 06:36:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-use-load-script-to-remove-wrong-data-entry/m-p/1165541#M635360</guid>
      <dc:creator>paulyeo11</dc:creator>
      <dc:date>2016-05-18T06:36:17Z</dc:date>
    </item>
    <item>
      <title>Re: How to use load script to remove wrong data entry ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-use-load-script-to-remove-wrong-data-entry/m-p/1165542#M635361</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I just notice that i typing wrong , what i mean is replace 2020 to 2010 for year.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Paul&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 May 2016 06:37:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-use-load-script-to-remove-wrong-data-entry/m-p/1165542#M635361</guid>
      <dc:creator>paulyeo11</dc:creator>
      <dc:date>2016-05-18T06:37:50Z</dc:date>
    </item>
    <item>
      <title>Re: How to use load script to remove wrong data entry ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-use-load-script-to-remove-wrong-data-entry/m-p/1165543#M635362</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In your source you can try below condition&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD *&lt;/P&gt;&lt;P&gt;FROM Source&lt;/P&gt;&lt;P&gt;Where YearField &amp;lt;= Year(Today());&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 May 2016 06:41:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-use-load-script-to-remove-wrong-data-entry/m-p/1165543#M635362</guid>
      <dc:creator>Kushal_Chawda</dc:creator>
      <dc:date>2016-05-18T06:41:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to use load script to remove wrong data entry ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-use-load-script-to-remove-wrong-data-entry/m-p/1165544#M635363</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you Need to test the date and adjust it&lt;/P&gt;&lt;P&gt;if (year(date) = 2020, addyears(date,-10), date) as date&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if there are more wrong Dates you Need to add each date manually!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-&amp;gt; But how do you know what the Operator made wrong?&lt;/P&gt;&lt;P&gt;can't you getthe data again with correct Input data?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 May 2016 06:48:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-use-load-script-to-remove-wrong-data-entry/m-p/1165544#M635363</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-05-18T06:48:05Z</dc:date>
    </item>
    <item>
      <title>Re: How to use load script to remove wrong data entry ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-use-load-script-to-remove-wrong-data-entry/m-p/1165545#M635364</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kushal&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When i run , i get error below :-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cannot open file 'D:\AUTO\SOURCE&lt;/P&gt;&lt;P&gt;Where YearField &amp;lt;= Year'&lt;/P&gt;&lt;P&gt;LOAD *&lt;/P&gt;&lt;P&gt;FROM SOURCE&lt;/P&gt;&lt;P&gt;Where YearField &amp;lt;= Year(Today())&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I try to change the SOURCE to GL_TABLE , it also cannot work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Paul&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 May 2016 06:59:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-use-load-script-to-remove-wrong-data-entry/m-p/1165545#M635364</guid>
      <dc:creator>paulyeo11</dc:creator>
      <dc:date>2016-05-18T06:59:16Z</dc:date>
    </item>
    <item>
      <title>Re: How to use load script to remove wrong data entry ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-use-load-script-to-remove-wrong-data-entry/m-p/1165546#M635365</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sir&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I try below script , no error but never change the year from 2020 to 2010.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if (year(@58:77T)=2020, addyears(@58:77T,-10), @58:77T) as date_,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have enclosed my file , kindly unzip and copy to drive &lt;span class="lia-unicode-emoji" title=":anguished_face:"&gt;😧&lt;/span&gt; and copy to folder AUTO_&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Paul !&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 May 2016 07:08:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-use-load-script-to-remove-wrong-data-entry/m-p/1165546#M635365</guid>
      <dc:creator>paulyeo11</dc:creator>
      <dc:date>2016-05-18T07:08:05Z</dc:date>
    </item>
    <item>
      <title>Re: How to use load script to remove wrong data entry ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-use-load-script-to-remove-wrong-data-entry/m-p/1165547#M635366</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Source here would be actual QVD from which Data is coming. If you don't have Year field in Your Data, try like below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD *&lt;/P&gt;&lt;P&gt;FROM YourTable.qvd(qvd)&lt;/P&gt;&lt;P&gt;where year(DateField)&amp;lt;= year(today());&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 May 2016 07:10:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-use-load-script-to-remove-wrong-data-entry/m-p/1165547#M635366</guid>
      <dc:creator>Kushal_Chawda</dc:creator>
      <dc:date>2016-05-18T07:10:10Z</dc:date>
    </item>
    <item>
      <title>Re: How to use load script to remove wrong data entry ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-use-load-script-to-remove-wrong-data-entry/m-p/1165548#M635367</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i cannot download your file (Company restriction)&lt;/P&gt;&lt;P&gt;but when I add a TextBox in your qvw it works&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;maybe a preload would work? please test&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GL_TABLE:&lt;/P&gt;&lt;P&gt;load *,&lt;/P&gt;&lt;P&gt;addyears(date,-10) as newdate;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;&lt;STRONG&gt;LOAD&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;nbsp; &lt;BR /&gt; 'TDSS' &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;as&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;SOURCE_GL&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;BR /&gt; '60' &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;as&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;SOURCE&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;date#&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;@58&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;:77T,'DD/MM/YYYY') as date,&lt;BR /&gt; AutoNumberHash128(@58:77T,'60') As Link_GL_Key,&lt;BR /&gt; @124:129T as &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[Reporting Code]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;BR /&gt; if(@102:103T = '-',@86:101T*-1,@86:101T)*-1 as &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[Amount]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;nbsp;&amp;nbsp; &lt;BR /&gt; FROM &lt;/SPAN&gt;&lt;STRONG&gt;&lt;EM style=": ; color: #808080; font-size: 8pt;"&gt;$(vRAWPath)$(vFile50)&lt;/EM&gt;&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt;.txt (ansi, fix, no labels, header is 0, record is line); &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/124885_pastedImage_0.png" style="max-height: 900px; max-width: 1200px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 May 2016 07:15:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-use-load-script-to-remove-wrong-data-entry/m-p/1165548#M635367</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-05-18T07:15:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to use load script to remove wrong data entry ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-use-load-script-to-remove-wrong-data-entry/m-p/1165549#M635368</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rudolf&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;after reading your last 2 line of your suggestion.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you got the point, i should have ask the I.T staff to correct the error at input , since it is wrong data entry. As you know people will the I.T staff ask me back if there are too many error he will not able to write script and correct the mistake. So in order not to make thing worst , since this is small issue , so i just try to solve it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Since this error not happen too often , and when it happen i will know it , so i can just correct it by adding script.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Paul &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 May 2016 07:16:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-use-load-script-to-remove-wrong-data-entry/m-p/1165549#M635368</guid>
      <dc:creator>paulyeo11</dc:creator>
      <dc:date>2016-05-18T07:16:46Z</dc:date>
    </item>
    <item>
      <title>Re: How to use load script to remove wrong data entry ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-use-load-script-to-remove-wrong-data-entry/m-p/1165550#M635369</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;If your date is in proper date datatype then try&lt;/P&gt;&lt;P&gt;if(Year(dateField)=2020,addYears(dateField,-10),dateField) &lt;/P&gt;&lt;P&gt;if not in date datatype then try&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;if(Year(date#(dateField,'DD/MM/YYYY'))=2020,addYears(date#(dateField,'DD/MM/YYYY'),-10),dateField) &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Regards&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 May 2016 07:20:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-use-load-script-to-remove-wrong-data-entry/m-p/1165550#M635369</guid>
      <dc:creator>PrashantSangle</dc:creator>
      <dc:date>2016-05-18T07:20:06Z</dc:date>
    </item>
    <item>
      <title>Re: How to use load script to remove wrong data entry ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-use-load-script-to-remove-wrong-data-entry/m-p/1165551#M635370</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rud&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it work , thank you .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Paul&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 May 2016 07:20:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-use-load-script-to-remove-wrong-data-entry/m-p/1165551#M635370</guid>
      <dc:creator>paulyeo11</dc:creator>
      <dc:date>2016-05-18T07:20:50Z</dc:date>
    </item>
    <item>
      <title>Re: How to use load script to remove wrong data entry ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-use-load-script-to-remove-wrong-data-entry/m-p/1165552#M635371</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Paul,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is your problem not to load dates which have 2020 or to replace it with another year&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 May 2016 07:22:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-use-load-script-to-remove-wrong-data-entry/m-p/1165552#M635371</guid>
      <dc:creator>kkkumar82</dc:creator>
      <dc:date>2016-05-18T07:22:35Z</dc:date>
    </item>
    <item>
      <title>Re: How to use load script to remove wrong data entry ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-use-load-script-to-remove-wrong-data-entry/m-p/1165553#M635372</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kumar&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My issue operator data entry enter wrong date , the date affect my report , and i want to use script to change the year from 2020 to 2010.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Paul&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 May 2016 08:54:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-use-load-script-to-remove-wrong-data-entry/m-p/1165553#M635372</guid>
      <dc:creator>paulyeo11</dc:creator>
      <dc:date>2016-05-18T08:54:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to use load script to remove wrong data entry ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-use-load-script-to-remove-wrong-data-entry/m-p/1165554#M635373</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kushal&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you mean i can do some thing like below :-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Binary "C:\Users\QV\Dropbox\QV file to PY Dropbox\000_qvd_v11.qvw";&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;where year(DateField)&amp;lt;= year(today());&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;So those year more then current year will change to current year it is ?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Paul&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 May 2016 08:56:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-use-load-script-to-remove-wrong-data-entry/m-p/1165554#M635373</guid>
      <dc:creator>paulyeo11</dc:creator>
      <dc:date>2016-05-18T08:56:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to use load script to remove wrong data entry ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-use-load-script-to-remove-wrong-data-entry/m-p/1165555#M635374</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rudolf&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank you very much for your script . I have tested it work fine. many thank.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Paul&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 May 2016 14:49:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-use-load-script-to-remove-wrong-data-entry/m-p/1165555#M635374</guid>
      <dc:creator>paulyeo11</dc:creator>
      <dc:date>2016-05-19T14:49:17Z</dc:date>
    </item>
  </channel>
</rss>

