<?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: qlikview load data only newest date in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/qlikview-load-data-only-newest-date/m-p/1723194#M723570</link>
    <description>&lt;P&gt;Based on the inputs, my first advice would be to use incremental load on the data source while extracting data from each LOT, rather than taking this approach.&lt;/P&gt;&lt;P&gt;Refer:&amp;nbsp;&lt;A href="https://www.analyticsvidhya.com/blog/2014/09/qlikview-incremental-load/" target="_blank" rel="noopener"&gt;https://www.analyticsvidhya.com/blog/2014/09/qlikview-incremental-load/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;If I got this right, firstly, you want the check to happen based on each Lot, TestReportedName &amp;amp; ResultSampleNumber.&lt;/P&gt;&lt;P&gt;So LOT&amp;amp;TestReportedName &amp;amp;ResultSampleNumber would be your Unique Key.&lt;/P&gt;&lt;P&gt;Try&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;A:
Load
LotXLotName,
Num(TimeStamp#(ResultEnteredOn, 'dd/MM/yyyy hh:mm:ss')) as ResultEnteredOn,
ResultNumericEntry,
ResultSampleNumber,
LotXLotName&amp;amp;TestReportedName&amp;amp;ResultSampleNumber as Unique_Key,
LotXLotName&amp;amp;TestReportedName&amp;amp;ResultSampleNumber&amp;amp;Num(TimeStamp#(ResultEnteredOn, 'dd/MM/yyyy hh:mm:ss')) as Key_to_Join

From
$(vQC_ODHData_Ext) (qvd);

Right Join(A)
Load
Unique_Key&amp;amp;Num(TimeStamp#(ResultEnteredOn, 'dd/MM/yyyy hh:mm:ss'))  as Key_to_Join;

Load
Unique_Key,
Max(ResultEnteredOn) as ResultEnteredOn // Only get the newest Date Entered.
Resident A
Group By Unique_Key;

Drop Field Key_to_Join from A; // Remove the Unique Key as we do not need it anymore.&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 29 Jun 2020 17:05:20 GMT</pubDate>
    <dc:creator>vamsee</dc:creator>
    <dc:date>2020-06-29T17:05:20Z</dc:date>
    <item>
      <title>qlikview load data only newest date</title>
      <link>https://community.qlik.com/t5/QlikView/qlikview-load-data-only-newest-date/m-p/1721355#M723562</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;trying to load data set&lt;/P&gt;&lt;P&gt;a record for a sample for a batch has been entered on 16 March 2020 with data&lt;/P&gt;&lt;P&gt;it was found that the data was wrong&lt;/P&gt;&lt;P&gt;another record was entered for same batch with the corrected data but on the 17 March 2020&lt;/P&gt;&lt;P&gt;both records now show in the source table.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How do I load the data but only ensuring the newest record for that entry is loaded.&lt;/P&gt;&lt;P&gt;I.e. I only want the record for the 17 March 2002 to load, not the 16 March 2020&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;obviously this applies for looking at all records where there may have been corrected info entered in the source tabel&lt;/P&gt;&lt;P&gt;field I am looking at is ResultEnteredOn&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Many thanks for Looking&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/qlikview-load-data-only-newest-date/m-p/1721355#M723562</guid>
      <dc:creator>spikenaylor1</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: qlikview load data only newest date</title>
      <link>https://community.qlik.com/t5/QlikView/qlikview-load-data-only-newest-date/m-p/1721360#M723563</link>
      <description>&lt;P&gt;You have first find the unique key column for the batch.&lt;/P&gt;&lt;P&gt;Then, try&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;A:
Load
*,
Unique_key,//This key should not include date value
Date,
Unique_key&amp;amp;Date as Key_To_Join
From Source;

Right Join(A)
Load 
Unique_key&amp;amp;Date as Key_To_Join
;
Load
Unique_Key,
Max(Date) as Date
Resident A
Group By Unique_Key
;
Drop Field Key_To_Join from A;&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 23 Jun 2020 16:11:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/qlikview-load-data-only-newest-date/m-p/1721360#M723563</guid>
      <dc:creator>vamsee</dc:creator>
      <dc:date>2020-06-23T16:11:03Z</dc:date>
    </item>
    <item>
      <title>Re: qlikview load data only newest date</title>
      <link>https://community.qlik.com/t5/QlikView/qlikview-load-data-only-newest-date/m-p/1723055#M723564</link>
      <description>&lt;P&gt;Cant get this to work, it still shows two entries, cant see what is wrong.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;A:
Load
LotXLotName,
ResultEnteredOn,
ResultNumericEntry,
ResultSampleNumber,
ResultSampleNumber&amp;amp;ResultEnteredOn as Key_to_Join // create a unique key consisting of the Sample Number and the date entered.

From
$(vQC_ODHData_Ext) (qvd);

Right Join(A)
Load
ResultSampleNumber&amp;amp;ResultEnteredOn as Key_to_Join;

Load
ResultSampleNumber,
Max(ResultEnteredOn) as ResultEnteredOn // Only get the newest Date Entered.
Resident A
Group By ResultSampleNumber;

Drop Field Key_to_Join from A; // Remove the Unique Key as we do not need it anymore.&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="NewDateOnly.PNG" style="width: 498px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/36486iE81DF771BB8DB6B6/image-size/large?v=v2&amp;amp;px=999" role="button" title="NewDateOnly.PNG" alt="NewDateOnly.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jun 2020 10:13:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/qlikview-load-data-only-newest-date/m-p/1723055#M723564</guid>
      <dc:creator>spikenaylor1</dc:creator>
      <dc:date>2020-06-29T10:13:32Z</dc:date>
    </item>
    <item>
      <title>Re: qlikview load data only newest date</title>
      <link>https://community.qlik.com/t5/QlikView/qlikview-load-data-only-newest-date/m-p/1723126#M723565</link>
      <description>&lt;P&gt;I don't see an issue in the screenshot shared, as I see two ResultSampleNumber and you are grouping by&amp;nbsp;ResultSampleNumber.&lt;/P&gt;&lt;P&gt;Are you looking for one record per LOT?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jun 2020 14:21:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/qlikview-load-data-only-newest-date/m-p/1723126#M723565</guid>
      <dc:creator>vamsee</dc:creator>
      <dc:date>2020-06-29T14:21:54Z</dc:date>
    </item>
    <item>
      <title>Re: qlikview load data only newest date</title>
      <link>https://community.qlik.com/t5/QlikView/qlikview-load-data-only-newest-date/m-p/1723147#M723566</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Try like below to get only max date(new records)&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Tabale_Name:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Load Distainct &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'your key fied name',&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Max(Date filed) as Date Field&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;from file path&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; &amp;nbsp;group by&amp;nbsp;'your key fied name';&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;inner join&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Load&amp;nbsp; *&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;from your file path;&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jun 2020 15:02:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/qlikview-load-data-only-newest-date/m-p/1723147#M723566</guid>
      <dc:creator>NitinK7</dc:creator>
      <dc:date>2020-06-29T15:02:59Z</dc:date>
    </item>
    <item>
      <title>Re: qlikview load data only newest date</title>
      <link>https://community.qlik.com/t5/QlikView/qlikview-load-data-only-newest-date/m-p/1723171#M723568</link>
      <description>&lt;P&gt;&lt;STRONG&gt;Hi there all, thanks for the help, I have tried the examples given to no avail.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Here is a fuller set of data.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="NewDateOnly.PNG" style="width: 864px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/36503i7980AABAAF2F2A4D/image-size/large?v=v2&amp;amp;px=999" role="button" title="NewDateOnly.PNG" alt="NewDateOnly.PNG" /&gt;&lt;/span&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;So I have loaded from the source a mixed bag of test results for different tests.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;This sample set of data is just for one Lot.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;In this example Test 5 has had data entered twice. the newer ResultEnteredOn date is the row I want showing . I want to discard the 1st Test 5 row.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;All other rows would remain.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;For Test 1, all the results are calculated at the same time in the source. that is why there is 7 entries.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;if the user noticed they had entered something wrong, there would be a newer set of 7 rows for Test 1 with a newer ResultEnteredOn date. I would as with test 5 want to discard the Older test 1 rows keeping only the newer data.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;any ideas, Would I need to break the loading down to loading for tests and remove older rows there, then combine all filtered data together, or can it be done for this one table.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Many thanks for any help or advice given&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jun 2020 15:56:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/qlikview-load-data-only-newest-date/m-p/1723171#M723568</guid>
      <dc:creator>spikenaylor1</dc:creator>
      <dc:date>2020-06-29T15:56:17Z</dc:date>
    </item>
    <item>
      <title>Re: qlikview load data only newest date</title>
      <link>https://community.qlik.com/t5/QlikView/qlikview-load-data-only-newest-date/m-p/1723194#M723570</link>
      <description>&lt;P&gt;Based on the inputs, my first advice would be to use incremental load on the data source while extracting data from each LOT, rather than taking this approach.&lt;/P&gt;&lt;P&gt;Refer:&amp;nbsp;&lt;A href="https://www.analyticsvidhya.com/blog/2014/09/qlikview-incremental-load/" target="_blank" rel="noopener"&gt;https://www.analyticsvidhya.com/blog/2014/09/qlikview-incremental-load/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;If I got this right, firstly, you want the check to happen based on each Lot, TestReportedName &amp;amp; ResultSampleNumber.&lt;/P&gt;&lt;P&gt;So LOT&amp;amp;TestReportedName &amp;amp;ResultSampleNumber would be your Unique Key.&lt;/P&gt;&lt;P&gt;Try&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;A:
Load
LotXLotName,
Num(TimeStamp#(ResultEnteredOn, 'dd/MM/yyyy hh:mm:ss')) as ResultEnteredOn,
ResultNumericEntry,
ResultSampleNumber,
LotXLotName&amp;amp;TestReportedName&amp;amp;ResultSampleNumber as Unique_Key,
LotXLotName&amp;amp;TestReportedName&amp;amp;ResultSampleNumber&amp;amp;Num(TimeStamp#(ResultEnteredOn, 'dd/MM/yyyy hh:mm:ss')) as Key_to_Join

From
$(vQC_ODHData_Ext) (qvd);

Right Join(A)
Load
Unique_Key&amp;amp;Num(TimeStamp#(ResultEnteredOn, 'dd/MM/yyyy hh:mm:ss'))  as Key_to_Join;

Load
Unique_Key,
Max(ResultEnteredOn) as ResultEnteredOn // Only get the newest Date Entered.
Resident A
Group By Unique_Key;

Drop Field Key_to_Join from A; // Remove the Unique Key as we do not need it anymore.&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jun 2020 17:05:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/qlikview-load-data-only-newest-date/m-p/1723194#M723570</guid>
      <dc:creator>vamsee</dc:creator>
      <dc:date>2020-06-29T17:05:20Z</dc:date>
    </item>
    <item>
      <title>Re: qlikview load data only newest date</title>
      <link>https://community.qlik.com/t5/QlikView/qlikview-load-data-only-newest-date/m-p/1723195#M723571</link>
      <description>&lt;P&gt;The Timestamp() ensures the date format stays intact and join happens perfectly&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jun 2020 17:09:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/qlikview-load-data-only-newest-date/m-p/1723195#M723571</guid>
      <dc:creator>vamsee</dc:creator>
      <dc:date>2020-06-29T17:09:18Z</dc:date>
    </item>
    <item>
      <title>Re: qlikview load data only newest date</title>
      <link>https://community.qlik.com/t5/QlikView/qlikview-load-data-only-newest-date/m-p/1723416#M723572</link>
      <description>&lt;P&gt;till cant get anything to work.&lt;/P&gt;&lt;P&gt;I have provided some sample data&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;aa:
LOAD * INLINE [
    LotXLotName,ResultEnteredOn,ResultName,ResultNumericEntry,SampleStage,TestReportedName,ResultSampleNumber,LotXDueDate
    AB1234,01/06/2020 18:57:30,Test5,425.24,A,Test5,2921298,25/05/2020 00:00:00
    AB1234,08/06/2020 07:59:14,Test5,361.75,A,Test5,2927646,25/05/2020 00:00:00   		
    AB1234,01/06/2020 19:57:30,Test1a,98,A,Test1,2904981,25/05/2020 00:00:00
    AB1234,01/06/2020 19:57:30,Test1b,24,A,Test1,2904981,25/05/2020 00:00:00 
    AB1234,08/06/2020 08:59:14,Test1a,97,A,Test1,2932587,25/05/2020 00:00:00
    AB1234,08/06/2020 08:59:14,Test1b,35,A,Test1,2932587,25/05/2020 00:00:00       
];

/* This is what I need from the Data, but in reality I have lots of LotXLotName, and lots of different TestReportedNames.

    AB1234,08/06/2020 07:59:14,Test5,361.75,A,Test5,2927646,25/05/2020 00:00:00
    AB1234,08/06/2020 08:59:14,Test1a,97,A,Test1,2932587,25/05/2020 00:00:00
    AB1234,08/06/2020 08:59:14,Test1b,35,A,Test1,2932587,25/05/2020 00:00:00 
*/

A:
Load
LotXLotName,
ResultName,
ResultNumericEntry,
SampleStage,
TestReportedName,
ResultSampleNumber,
LotXDueDate,
Num(TimeStamp#(ResultEnteredOn, 'dd/MM/yyyy hh:mm:ss')) as ResultEnteredOn,
LotXLotName&amp;amp;TestReportedName&amp;amp;ResultSampleNumber as Unique_Key,
LotXLotName&amp;amp;TestReportedName&amp;amp;ResultSampleNumber&amp;amp;Num(TimeStamp#(ResultEnteredOn, 'dd/MM/yyyy hh:mm:ss')) as Key_to_Join

resident aa;


Right Join(A)
Load
Unique_Key&amp;amp;Num(TimeStamp#(ResultEnteredOn, 'dd/MM/yyyy hh:mm:ss'))  as Key_to_Join;

Load
Unique_Key,
Max(ResultEnteredOn) as ResultEnteredOn // Only get the newest Date Entered.
Resident A
Group By Unique_Key;

Drop Field Key_to_Join from A; // Remove the Unique Key as we do not need it anymore.&lt;/LI-CODE&gt;&lt;P&gt;just cant see why it is not working&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Jun 2020 08:21:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/qlikview-load-data-only-newest-date/m-p/1723416#M723572</guid>
      <dc:creator>spikenaylor1</dc:creator>
      <dc:date>2020-06-30T08:21:52Z</dc:date>
    </item>
    <item>
      <title>Re: qlikview load data only newest date</title>
      <link>https://community.qlik.com/t5/QlikView/qlikview-load-data-only-newest-date/m-p/1723557#M723573</link>
      <description>&lt;P&gt;My bad made a minor correction to the join script.&lt;/P&gt;&lt;P&gt;Right Join(A)&lt;BR /&gt;Load&lt;BR /&gt;Unique_Key&amp;amp;&lt;STRONG&gt;Num(ResultEnteredOn)&lt;/STRONG&gt; as Key_to_Join&lt;BR /&gt;;&lt;/P&gt;&lt;P&gt;Your final script&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;aa:
LOAD * INLINE [
    LotXLotName, ResultEnteredOn, ResultName, ResultNumericEntry, SampleStage, TestReportedName, ResultSampleNumber, LotXDueDate
    AB1234, 01/06/2020 18:57:30, Test5, 425.24, A, Test5, 2921298, 25/05/2020 00:00:00
    AB1234, 08/06/2020 07:59:14, Test5, 361.75, A, Test5, 2927646, 25/05/2020 00:00:00
    AB1234, 01/06/2020 19:57:30, Test1a, 98, A, Test1, 2904981, 25/05/2020 00:00:00
    AB1234, 01/06/2020 19:57:30, Test1b, 24, A, Test1, 2904981, 25/05/2020 00:00:00
    AB1234, 08/06/2020 08:59:14, Test1a, 97, A, Test1, 2932587, 25/05/2020 00:00:00
    AB1234, 08/06/2020 08:59:14, Test1b, 35, A, Test1, 2932587, 25/05/2020 00:00:00
];

/* This is what I need from the Data, but in reality I have lots of LotXLotName, and lots of different TestReportedNames.

    AB1234,08/06/2020 07:59:14,Test5,361.75,A,Test5,2927646,25/05/2020 00:00:00
    AB1234,08/06/2020 08:59:14,Test1a,97,A,Test1,2932587,25/05/2020 00:00:00
    AB1234,08/06/2020 08:59:14,Test1b,35,A,Test1,2932587,25/05/2020 00:00:00 
*/

A:
Load
			LotXLotName,
			ResultName,
			ResultNumericEntry,
			SampleStage,
			TestReportedName,
			ResultSampleNumber,
			LotXDueDate,
			(TimeStamp#(ResultEnteredOn, 'dd/MM/yyyy hh:mm:ss')) as ResultEnteredOn,
			LotXLotName&amp;amp;TestReportedName&amp;amp;ResultSampleNumber as Unique_Key,
			LotXLotName&amp;amp;TestReportedName&amp;amp;ResultSampleNumber&amp;amp;Num(TimeStamp#(ResultEnteredOn, 'dd/MM/yyyy hh:mm:ss')) as Key_to_Join

Resident aa;
Drop Table aa;

Right Join(A)
Load
			Unique_Key&amp;amp;Num(ResultEnteredOn)  as Key_to_Join
;

Load
			Unique_Key,
			Max(ResultEnteredOn) as ResultEnteredOn // Only get the newest Date Entered.
Resident A
Group By Unique_Key;

Drop Field Key_to_Join from A; // Remove the Unique Key as we do not need it anymore.&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 30 Jun 2020 14:07:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/qlikview-load-data-only-newest-date/m-p/1723557#M723573</guid>
      <dc:creator>vamsee</dc:creator>
      <dc:date>2020-06-30T14:07:21Z</dc:date>
    </item>
    <item>
      <title>Re: qlikview load data only newest date</title>
      <link>https://community.qlik.com/t5/QlikView/qlikview-load-data-only-newest-date/m-p/1723561#M723574</link>
      <description>&lt;P&gt;Couldn't help notice but the timestamps on your tests are the same.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="vamsee_0-1593526155591.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/36580i790FDADABCEEA874/image-size/medium?v=v2&amp;amp;px=400" role="button" title="vamsee_0-1593526155591.png" alt="vamsee_0-1593526155591.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Assuming this is just because of sample data, as the result is the same that of input. (I/p 6 rows, O/p 6 rows)&lt;/P&gt;</description>
      <pubDate>Tue, 30 Jun 2020 14:10:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/qlikview-load-data-only-newest-date/m-p/1723561#M723574</guid>
      <dc:creator>vamsee</dc:creator>
      <dc:date>2020-06-30T14:10:39Z</dc:date>
    </item>
    <item>
      <title>Re: qlikview load data only newest date</title>
      <link>https://community.qlik.com/t5/QlikView/qlikview-load-data-only-newest-date/m-p/1724169#M723575</link>
      <description>&lt;P&gt;I still cant get the solution provided to work, it still displays all the records.&lt;/P&gt;&lt;P&gt;per your question.&amp;nbsp;&lt;/P&gt;&lt;P&gt;TestReportedName - for Test1&lt;/P&gt;&lt;P&gt;on the source DB, there are 5 entries for Test1, all are subtests calculated at the same time when the data is entered. The ResultName shows in my example test 1a and 1b, the resultNumericEntry values are different, but The TestReportedName and ResultSampleNumber and ResultEnteredOn values will be the same for the 2 rows in my example, in reality the 5 rows will be the same, except for the resultNumericentry.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could I ask if you could provide a QVW file showing that the load script works, so I can try to understand why it doesn't on my load.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Many thanks for all the help.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Spikenaylor&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 01 Jul 2020 15:45:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/qlikview-load-data-only-newest-date/m-p/1724169#M723575</guid>
      <dc:creator>spikenaylor1</dc:creator>
      <dc:date>2020-07-01T15:45:28Z</dc:date>
    </item>
    <item>
      <title>Re: qlikview load data only newest date</title>
      <link>https://community.qlik.com/t5/QlikView/qlikview-load-data-only-newest-date/m-p/1724173#M723576</link>
      <description>&lt;P&gt;Here you go&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 01 Jul 2020 15:48:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/qlikview-load-data-only-newest-date/m-p/1724173#M723576</guid>
      <dc:creator>vamsee</dc:creator>
      <dc:date>2020-07-01T15:48:55Z</dc:date>
    </item>
  </channel>
</rss>

