<?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: Modifying conflicting dates on different records in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Modifying-conflicting-dates-on-different-records/m-p/934979#M954030</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I would have to do an ORDER BY Location, Start Date, End Date prior to performing this, correct?&amp;nbsp; (Does null End Date get sorted to last?)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 18 Nov 2015 20:19:33 GMT</pubDate>
    <dc:creator>anothergreg</dc:creator>
    <dc:date>2015-11-18T20:19:33Z</dc:date>
    <item>
      <title>Modifying conflicting dates on different records</title>
      <link>https://community.qlik.com/t5/QlikView/Modifying-conflicting-dates-on-different-records/m-p/934975#M954026</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a Qlik process with multiple steps (workspaces).&amp;nbsp; The first is to import data from external sources, the second is to transform it, if necessary.&amp;nbsp; I need to modify dates in the transform step in order to avoid date conflicts for a time-based index of standard values, but the issue I'm facing is that the dates to be compared are on different records.&amp;nbsp; I cannot modify the process creating the data I'm importing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My (simplified) import step pulls information where there are standard numerical values for a time period.&amp;nbsp; Example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;Location, Start Date, End Date, Amount&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;A,01/01/2015,01/01/2015,3&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;A,01/01/2015,,4&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;B,08/14/2015,08/20/2015,5&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;B,08/20/2015,11/18/2015,6&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;B,11/18/2015,,7&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;C,06/01/2013,,2&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The imported data has, for the same Location, the same Start Date as another record's End Date whenever there is a change in value.&amp;nbsp; The current record will always have a null as the End Date.&amp;nbsp; If I load the data as-is, then I'm going to have two different Amounts for a single Location on conflicting Start/End Dates (see records 3 vs 4 for 08/20/2015, and 4 vs 5 for 11/18/2015).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I cannot think of a simple way to modify my dates in the Load Script to account for these conflicts.&amp;nbsp; Subtracting a day from the End Date field will render some single-day changes as if they never occurred.&amp;nbsp; Adding a day to the Start Dates on records that do not have End Dates might cause issues due to records I'm joining with that have data on the day being pushed forward.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ideally, I'd like to have the example data mirror the set below:&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;Location, Start Date, End Date, Amount&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;A,01/01/2015,01/01/2015,3&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;A,01/02/2015,,4&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;B,08/14/2015,08/20/2015,5&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;B,08/21/2015,11/18/2015,6&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;B,11/19/2015,,7&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;C,06/01/2013,,2&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, this is all dependent on information not contained in the record being modified, but would be dependent on if the record is an original record for a Location.&amp;nbsp; This can't be determined until the rest of the dataset is examined.&amp;nbsp; I've never done this in Qlik.&amp;nbsp; Is there something which does this easily?&amp;nbsp; If there is no simple solution, please just let me know that there is no simple solution rather than provide a complex answer.&amp;nbsp; I'd rather not waste anyone's time if there isn't a simple solution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you in advance,&lt;/P&gt;&lt;P&gt;Greg&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Nov 2015 19:39:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Modifying-conflicting-dates-on-different-records/m-p/934975#M954026</guid>
      <dc:creator>anothergreg</dc:creator>
      <dc:date>2015-11-18T19:39:02Z</dc:date>
    </item>
    <item>
      <title>Re: Modifying conflicting dates on different records</title>
      <link>https://community.qlik.com/t5/QlikView/Modifying-conflicting-dates-on-different-records/m-p/934976#M954027</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think you can use the peek or previous function to get the values (location, end date) of the previous record read and change the value of the current record start date&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Nov 2015 19:45:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Modifying-conflicting-dates-on-different-records/m-p/934976#M954027</guid>
      <dc:creator>maxgro</dc:creator>
      <dc:date>2015-11-18T19:45:08Z</dc:date>
    </item>
    <item>
      <title>Re: Modifying conflicting dates on different records</title>
      <link>https://community.qlik.com/t5/QlikView/Modifying-conflicting-dates-on-different-records/m-p/934977#M954028</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maybe like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INPUT:&lt;/P&gt;&lt;P&gt;LOAD Location,&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; if(LocationRecordID = 1, [Start Date], Date(Rangesum(Peek([End Date]),1))) as [Start Date],&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; [End Date],&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; Amount; &lt;/P&gt;&lt;P&gt;LOAD *,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; AutoNumber(recno(), Location) as LocationRecordID&lt;/P&gt;&lt;P&gt;INLINE [&lt;/P&gt;&lt;P&gt;Location, Start Date, End Date, Amount&lt;/P&gt;&lt;P&gt;A,01/01/2015,01/01/2015,3&lt;/P&gt;&lt;P&gt;A,01/01/2015,,4&lt;/P&gt;&lt;P&gt;B,08/14/2015,08/20/2015,5&lt;/P&gt;&lt;P&gt;B,08/20/2015,11/18/2015,6&lt;/P&gt;&lt;P&gt;B,11/18/2015,,7&lt;/P&gt;&lt;P&gt;C,06/01/2013,,2&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Nov 2015 19:58:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Modifying-conflicting-dates-on-different-records/m-p/934977#M954028</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2015-11-18T19:58:51Z</dc:date>
    </item>
    <item>
      <title>Re: Modifying conflicting dates on different records</title>
      <link>https://community.qlik.com/t5/QlikView/Modifying-conflicting-dates-on-different-records/m-p/934978#M954029</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Temp:&lt;/P&gt;&lt;P&gt;LOAD Location, Date#([Start Date],'MM/DD/YYYY') as [Start Date],Date#([End Date],'MM/DD/YYYY') as [End Date], Amount;&lt;/P&gt;&lt;P&gt;LOAD * Inline&lt;/P&gt;&lt;P&gt;[&lt;/P&gt;&lt;P&gt;Location, Start Date, End Date, Amount&lt;/P&gt;&lt;P&gt;A,01/01/2015,01/01/2015,3&lt;/P&gt;&lt;P&gt;A,01/01/2015,,4&lt;/P&gt;&lt;P&gt;B,08/14/2015,08/20/2015,5&lt;/P&gt;&lt;P&gt;B,08/20/2015,11/18/2015,6&lt;/P&gt;&lt;P&gt;B,11/18/2015,,7&lt;/P&gt;&lt;P&gt;C,06/01/2013,,2&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Location:&lt;/P&gt;&lt;P&gt;NoConcatenate&lt;/P&gt;&lt;P&gt;LOAD Location,&lt;/P&gt;&lt;P&gt;&amp;nbsp; If(Location = Previous(Location),Date([Start Date]+1,'MM/DD/YYYY'),[Start Date]) as [Start Date],&lt;/P&gt;&lt;P&gt;&amp;nbsp; [End Date],&lt;/P&gt;&lt;P&gt;&amp;nbsp; Amount&lt;/P&gt;&lt;P&gt;Resident Temp&lt;/P&gt;&lt;P&gt;Order By Location, [Start Date];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DROP Table Temp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;result:&lt;/P&gt;&lt;TABLE bgcolor="#ffffff" border="1" cellpadding="2" cellspacing="0" style="font-size: 9pt;"&gt;&lt;TBODY&gt;&lt;TR bgcolor="#f5f5f5"&gt;&lt;TH nowrap="nowrap"&gt;&lt;SPAN style="color: #363636;"&gt;&lt;STRONG&gt;Location&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt; &lt;/STRONG&gt;&lt;/TH&gt;&lt;TH nowrap="nowrap"&gt;&lt;SPAN style="color: #363636;"&gt;&lt;STRONG&gt;Start Date&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt; &lt;/STRONG&gt;&lt;/TH&gt;&lt;TH nowrap="nowrap"&gt;&lt;SPAN style="color: #363636;"&gt;&lt;STRONG&gt;End Date&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt; &lt;/STRONG&gt;&lt;/TH&gt;&lt;TH nowrap="nowrap"&gt;&lt;SPAN style="color: #363636;"&gt;&lt;STRONG&gt;Amount&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt; &lt;/STRONG&gt;&lt;/TH&gt;&lt;/TR&gt;&lt;TR bgcolor="#ffffff"&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;SPAN style="color: #363636;"&gt;A&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;SPAN style="color: #363636;"&gt;01/01/2015&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;SPAN style="color: #363636;"&gt;01/01/2015&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;SPAN style="color: #363636;"&gt;3&lt;/SPAN&gt; &lt;/TD&gt;&lt;/TR&gt;&lt;TR bgcolor="#ffffff"&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;SPAN style="color: #363636;"&gt;A&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;SPAN style="color: #363636;"&gt;01/02/2015&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;/TD&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;SPAN style="color: #363636;"&gt;4&lt;/SPAN&gt; &lt;/TD&gt;&lt;/TR&gt;&lt;TR bgcolor="#ffffff"&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;SPAN style="color: #363636;"&gt;B&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;SPAN style="color: #363636;"&gt;08/14/2015&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;SPAN style="color: #363636;"&gt;08/20/2015&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;SPAN style="color: #363636;"&gt;5&lt;/SPAN&gt; &lt;/TD&gt;&lt;/TR&gt;&lt;TR bgcolor="#ffffff"&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;SPAN style="color: #363636;"&gt;B&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;SPAN style="color: #363636;"&gt;08/21/2015&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;SPAN style="color: #363636;"&gt;11/18/2015&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;SPAN style="color: #363636;"&gt;6&lt;/SPAN&gt; &lt;/TD&gt;&lt;/TR&gt;&lt;TR bgcolor="#ffffff"&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;SPAN style="color: #363636;"&gt;B&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;SPAN style="color: #363636;"&gt;11/19/2015&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;/TD&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;SPAN style="color: #363636;"&gt;7&lt;/SPAN&gt; &lt;/TD&gt;&lt;/TR&gt;&lt;TR bgcolor="#ffffff"&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;SPAN style="color: #363636;"&gt;C&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;SPAN style="color: #363636;"&gt;06/01/2013&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;/TD&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;SPAN style="color: #363636;"&gt;2&lt;/SPAN&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Nov 2015 20:14:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Modifying-conflicting-dates-on-different-records/m-p/934978#M954029</guid>
      <dc:creator />
      <dc:date>2015-11-18T20:14:34Z</dc:date>
    </item>
    <item>
      <title>Re: Modifying conflicting dates on different records</title>
      <link>https://community.qlik.com/t5/QlikView/Modifying-conflicting-dates-on-different-records/m-p/934979#M954030</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I would have to do an ORDER BY Location, Start Date, End Date prior to performing this, correct?&amp;nbsp; (Does null End Date get sorted to last?)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Nov 2015 20:19:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Modifying-conflicting-dates-on-different-records/m-p/934979#M954030</guid>
      <dc:creator>anothergreg</dc:creator>
      <dc:date>2015-11-18T20:19:33Z</dc:date>
    </item>
    <item>
      <title>Re: Modifying conflicting dates on different records</title>
      <link>https://community.qlik.com/t5/QlikView/Modifying-conflicting-dates-on-different-records/m-p/934980#M954031</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'd have to include a sort by End Date as well in case this is shuffled, correct?&amp;nbsp; Do null End Dates get sorted to last?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Nov 2015 20:23:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Modifying-conflicting-dates-on-different-records/m-p/934980#M954031</guid>
      <dc:creator>anothergreg</dc:creator>
      <dc:date>2015-11-18T20:23:00Z</dc:date>
    </item>
    <item>
      <title>Re: Modifying conflicting dates on different records</title>
      <link>https://community.qlik.com/t5/QlikView/Modifying-conflicting-dates-on-different-records/m-p/934981#M954032</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Right, the input table should be sorted correctly. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Nov 2015 20:26:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Modifying-conflicting-dates-on-different-records/m-p/934981#M954032</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2015-11-18T20:26:18Z</dc:date>
    </item>
    <item>
      <title>Re: Modifying conflicting dates on different records</title>
      <link>https://community.qlik.com/t5/QlikView/Modifying-conflicting-dates-on-different-records/m-p/934982#M954033</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try something like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TempFormatDate:&amp;nbsp; //This is a temporary table dropped at the end of the script. Creating this formats the two date fields&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;Date(Start) as [Start Date],&lt;/P&gt;&lt;P&gt;Date(End) as [End Date];&lt;/P&gt;&lt;P&gt;LOAD * Inline [&lt;/P&gt;&lt;P&gt;Start, End&lt;/P&gt;&lt;P&gt;01/1/15, 01/1/15&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Input:&lt;/P&gt;&lt;P&gt;Load * Inline [&lt;/P&gt;&lt;P&gt;Location, Start Date, End Date, Amount&lt;/P&gt;&lt;P&gt;A,01/01/2015,01/01/2015,3&lt;/P&gt;&lt;P&gt;A,01/01/2015,,4&lt;/P&gt;&lt;P&gt;B,08/14/2015,08/20/2015,5&lt;/P&gt;&lt;P&gt;B,08/20/2015,11/18/2015,6&lt;/P&gt;&lt;P&gt;B,11/18/2015,,7&lt;/P&gt;&lt;P&gt;C,06/01/2013,,2];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NoConcatenate&lt;/P&gt;&lt;P&gt;Output:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;Location, &lt;/P&gt;&lt;P&gt;if(Previous([End Date]) = [Start Date], [Start Date]+1,[Start Date]) as [Start Date],&lt;/P&gt;&lt;P&gt;[End Date],&amp;nbsp; &lt;/P&gt;&lt;P&gt;Amount&lt;/P&gt;&lt;P&gt;Resident Input;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Drop Tables Input, TempFormatDate;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Nov 2015 20:52:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Modifying-conflicting-dates-on-different-records/m-p/934982#M954033</guid>
      <dc:creator>effinty2112</dc:creator>
      <dc:date>2015-11-18T20:52:59Z</dc:date>
    </item>
    <item>
      <title>Re: Modifying conflicting dates on different records</title>
      <link>https://community.qlik.com/t5/QlikView/Modifying-conflicting-dates-on-different-records/m-p/934983#M954034</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;
&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt; Do null End Dates get sorted to last?&lt;/SPAN&gt;&lt;/P&gt;

&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;If you are talking about a Resident Table LOAD in QV, I don't think so.&lt;/P&gt;&lt;P&gt;Could you replace NULL in [End Date] with e.g. today() or a future date?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;edit: &lt;/P&gt;&lt;P&gt;In your case, &lt;/P&gt;&lt;P&gt;ORDER BY Location, [Start Date], [End Date] &lt;STRONG&gt;desc;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;might be sufficient then without replacing NULL.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Nov 2015 20:59:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Modifying-conflicting-dates-on-different-records/m-p/934983#M954034</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2015-11-18T20:59:58Z</dc:date>
    </item>
  </channel>
</rss>

