<?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: Why does Load Resident work backwards ? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Why-does-Load-Resident-work-backwards/m-p/732175#M1055479</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You are right script will execute from top to bottom and left to right.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But you have preceding Load. Preceding load executes from bottom up.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table1:&lt;/P&gt;&lt;P&gt;Load *,Today();// Preceding Load&lt;/P&gt;&lt;P&gt;Load * Table1;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table2:&lt;/P&gt;&lt;P&gt;Load * Table2;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In this example script will execute from Top to bottom. So first Table1 is executed and then Table2. In Table1 we have a preceding load, so innermost Load will execute first and followed by upper Load&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you have worked in Sql, preceding load is like this&lt;/P&gt;&lt;P&gt;Select * from ( Select * from Table1 )&lt;/P&gt;&lt;P&gt;Here Inner query is executed first and then outer query&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 15 Oct 2014 12:32:12 GMT</pubDate>
    <dc:creator>anbu1984</dc:creator>
    <dc:date>2014-10-15T12:32:12Z</dc:date>
    <item>
      <title>Why does Load Resident work backwards ?</title>
      <link>https://community.qlik.com/t5/QlikView/Why-does-Load-Resident-work-backwards/m-p/732173#M1055477</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif; font-size: 10pt;"&gt;Hi All,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif; font-size: 10pt;"&gt;I am having to amend a dashboard which has a number of LOAD Resident statements in the script. However, I am confused by the syntax, or more accurately, the order in which the statements are executed within the script. For example....&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif; font-size: 10pt;"&gt;TempTable:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif; font-size: 10pt;"&gt;&lt;STRONG style="color: #0000ff;"&gt;&lt;STRONG style="color: #0000ff;"&gt;LOAD&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN style="color: #0000ff;"&gt;If&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;DurationInDays&lt;/SPAN&gt; &amp;lt; 8&lt;SPAN&gt;,'One week','More than a week') &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff;"&gt;as&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;[DurationText]&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;, &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif; font-size: 10pt;"&gt;*;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: calibri, verdana, arial, sans-serif;"&gt;&lt;STRONG style="color: #0000ff;"&gt;&lt;/STRONG&gt;&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif; font-size: 10pt;"&gt;&lt;STRONG style="color: #0000ff;"&gt;&lt;STRONG style="color: #0000ff;"&gt;Load&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN style="color: #800000; font-size: 10pt;"&gt;StartDate &lt;/SPAN&gt;- EndDate &lt;SPAN style="color: #0000ff;"&gt;as&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;DurationInDays&lt;/SPAN&gt;,&lt;BR /&gt;*;&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG style="color: #0000ff;"&gt;&lt;STRONG style="color: #0000ff;"&gt;Load&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;BR /&gt;*&lt;BR /&gt;&lt;SPAN style="color: #0000ff;"&gt;Resident&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-size: 10pt; font-family: calibri, verdana, arial, sans-serif;"&gt;EventTable; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;&lt;SPAN style="font-size: 10pt; font-family: calibri, verdana, arial, sans-serif;"&gt;I understand from this that TempTable is being loaded from EventTable, and that the DurationInDays field is being calculated from the difference between the Start date and End Date. &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;SPAN&gt;&lt;SPAN style="font-size: 10pt; font-family: calibri, verdana, arial, sans-serif;"&gt;The DurationText field is populated conditional on the value in DurationInDays. But how does that work ???&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;&lt;SPAN style="font-size: 10pt; font-family: calibri, verdana, arial, sans-serif;"&gt;I've always believed QV executes its script from top to bottom and from left to right. This piece of script seems to read from the bottom up, else it wouldn't know what the value of DurationIndays was in the first line.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;&lt;SPAN style="font-size: 10pt; font-family: calibri, verdana, arial, sans-serif;"&gt;Can someone explain please ?&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;&lt;SPAN style="font-size: 10pt; font-family: calibri, verdana, arial, sans-serif;"&gt;Thanks&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;&lt;SPAN style="font-size: 10pt; font-family: calibri, verdana, arial, sans-serif;"&gt;MV &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;&lt;SPAN style="font-size: 10pt; font-family: calibri, verdana, arial, sans-serif;"&gt;(PS No vague or ambiguous extracts from the QlikView Reference Manual please)&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Oct 2014 12:14:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Why-does-Load-Resident-work-backwards/m-p/732173#M1055477</guid>
      <dc:creator />
      <dc:date>2014-10-15T12:14:44Z</dc:date>
    </item>
    <item>
      <title>Re: Why does Load Resident work backwards ?</title>
      <link>https://community.qlik.com/t5/QlikView/Why-does-Load-Resident-work-backwards/m-p/732174#M1055478</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;In this case, the LOAD statements are executed from the bottom up. This happens only if you put several LOAD statements without a "table" reference, like Resident, SQL SELECT... or Inline, that if you have a LOAD statement only defining fields and whereclauses etc&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-family: inherit; font-size: 10pt; font-style: inherit; color: #0000ff;"&gt;&lt;STRONG style="color: #3d3d3d; font-style: inherit; font-family: calibri, verdana, arial, sans-serif;"&gt;/* ececuted third reading from result from below*/&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: calibri, verdana, arial, sans-serif;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit; color: #0000ff;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;LOAD&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #0000ff;"&gt;If&lt;/SPAN&gt;(&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #800000;"&gt;DurationInDays&lt;/SPAN&gt; &amp;lt; 8&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;,'One week','More than a week') &lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #0000ff;"&gt;as&lt;/SPAN&gt; &lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #800000;"&gt;[DurationText]&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: inherit;"&gt;,&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: calibri, verdana, arial, sans-serif;"&gt;*;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-family: inherit; font-size: 10pt; font-style: inherit; line-height: 1.5em; color: #0000ff;"&gt;&lt;STRONG style="color: #3d3d3d; font-style: inherit; font-family: calibri, verdana, arial, sans-serif;"&gt;/* ececuted second, reading from result from below*/&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-family: inherit; font-size: 10pt; font-style: inherit; line-height: 1.5em; color: #0000ff;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;Load&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-size: 10pt; font-style: inherit; font-family: calibri, verdana, arial, sans-serif; font-weight: inherit;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: inherit; color: #800000;"&gt;StartDate &lt;/SPAN&gt;- EndDate &lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #0000ff;"&gt;as&lt;/SPAN&gt; &lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #800000;"&gt;DurationInDays&lt;/SPAN&gt;,&lt;BR /&gt;*;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: calibri, verdana, arial, sans-serif;"&gt;/* ececuted first, reading from Resident EventTable */&lt;BR /&gt;&lt;STRONG style="font-style: inherit; font-family: inherit; color: #0000ff;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;Load&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;BR /&gt;*&lt;BR /&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #0000ff;"&gt;Resident&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;BR /&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: calibri, verdana, arial, sans-serif;"&gt;EventTable;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-family: inherit; font-size: 10pt; font-style: inherit; color: #0000ff;"&gt;&lt;STRONG style="color: #3d3d3d; font-style: inherit; font-family: calibri, verdana, arial, sans-serif;"&gt;/* ececuted fifth reading from result below*/&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: inherit; font-style: inherit; color: #0000ff;"&gt;Load&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: calibri, verdana, arial, sans-serif;"&gt;*&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: calibri, verdana, arial, sans-serif;"&gt;Where [Col A] = 1;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-family: inherit; font-size: 10pt; font-style: inherit; color: #0000ff;"&gt;&lt;STRONG style="color: #3d3d3d; font-style: inherit; font-family: calibri, verdana, arial, sans-serif;"&gt;/* ececuted forth reading from inline table*/&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: inherit; font-size: 10pt; font-style: inherit; color: #0000ff;"&gt;&lt;STRONG style="color: #3d3d3d; font-style: inherit; font-family: calibri, verdana, arial, sans-serif;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;SPAN style="color: #3d3d3d; font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: calibri, verdana, arial, sans-serif;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit; color: #0000ff;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;Load&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;BR /&gt;*&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 10pt; font-style: inherit; font-family: calibri, verdana, arial, sans-serif; font-weight: inherit;"&gt;Inline [&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;SPAN style="color: #0000ff; font-size: 10pt; font-style: inherit; font-family: calibri, verdana, arial, sans-serif; font-weight: inherit;"&gt;Col A, Col B&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;SPAN style="color: #0000ff; font-size: 10pt; font-style: inherit; font-family: calibri, verdana, arial, sans-serif; font-weight: inherit;"&gt;1, 2&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;SPAN style="color: #0000ff; font-size: 10pt; font-style: inherit; font-family: calibri, verdana, arial, sans-serif; font-weight: inherit;"&gt;2, 3&amp;nbsp;&amp;nbsp; ];&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Oct 2014 12:25:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Why-does-Load-Resident-work-backwards/m-p/732174#M1055478</guid>
      <dc:creator>johanlindell</dc:creator>
      <dc:date>2014-10-15T12:25:49Z</dc:date>
    </item>
    <item>
      <title>Re: Why does Load Resident work backwards ?</title>
      <link>https://community.qlik.com/t5/QlikView/Why-does-Load-Resident-work-backwards/m-p/732175#M1055479</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You are right script will execute from top to bottom and left to right.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But you have preceding Load. Preceding load executes from bottom up.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table1:&lt;/P&gt;&lt;P&gt;Load *,Today();// Preceding Load&lt;/P&gt;&lt;P&gt;Load * Table1;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table2:&lt;/P&gt;&lt;P&gt;Load * Table2;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In this example script will execute from Top to bottom. So first Table1 is executed and then Table2. In Table1 we have a preceding load, so innermost Load will execute first and followed by upper Load&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you have worked in Sql, preceding load is like this&lt;/P&gt;&lt;P&gt;Select * from ( Select * from Table1 )&lt;/P&gt;&lt;P&gt;Here Inner query is executed first and then outer query&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Oct 2014 12:32:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Why-does-Load-Resident-work-backwards/m-p/732175#M1055479</guid>
      <dc:creator>anbu1984</dc:creator>
      <dc:date>2014-10-15T12:32:12Z</dc:date>
    </item>
    <item>
      <title>Re: Why does Load Resident work backwards ?</title>
      <link>https://community.qlik.com/t5/QlikView/Why-does-Load-Resident-work-backwards/m-p/732176#M1055480</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I understand now even though I find it rather illogical. But that's not a first from QlikView.&lt;/P&gt;&lt;P&gt;Many thanks for your clear explanation.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Oct 2014 12:59:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Why-does-Load-Resident-work-backwards/m-p/732176#M1055480</guid>
      <dc:creator />
      <dc:date>2014-10-15T12:59:54Z</dc:date>
    </item>
    <item>
      <title>Re: Why does Load Resident work backwards ?</title>
      <link>https://community.qlik.com/t5/QlikView/Why-does-Load-Resident-work-backwards/m-p/732177#M1055481</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It is a very handy functionality though, where you can calculate new fields in "steps" based on fields created in the "logically previous" LOAD statement instead of having to read the table into a new table and drop the original one for each step.&lt;/P&gt;&lt;P&gt;/J&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Oct 2014 13:04:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Why-does-Load-Resident-work-backwards/m-p/732177#M1055481</guid>
      <dc:creator>johanlindell</dc:creator>
      <dc:date>2014-10-15T13:04:11Z</dc:date>
    </item>
    <item>
      <title>Re: Why does Load Resident work backwards ?</title>
      <link>https://community.qlik.com/t5/QlikView/Why-does-Load-Resident-work-backwards/m-p/732178#M1055482</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A class="" href="http://community.qlik.com/blogs/qlikviewdesignblog/2013/03/04/preceding-load"&gt;http://community.qlik.com/blogs/qlikviewdesignblog/2013/03/04/preceding-load&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Oct 2014 13:07:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Why-does-Load-Resident-work-backwards/m-p/732178#M1055482</guid>
      <dc:creator>anbu1984</dc:creator>
      <dc:date>2014-10-15T13:07:59Z</dc:date>
    </item>
  </channel>
</rss>

