<?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: Lighten up the script in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Lighten-up-the-script/m-p/565693#M683500</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Antonin,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As said in the help file:&lt;/P&gt;&lt;P&gt;&lt;SPAN class="Italic"&gt;&lt;STRONG&gt;loadstatement&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt; or &lt;SPAN class="Italic"&gt;selectstatement&lt;/SPAN&gt; must result in a two-column table&lt;/STRONG&gt;,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Taux_Journalier and Delai are too many in the syntax. That is why.&lt;/P&gt;&lt;P&gt;Karl's syntax should work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Fabrice&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 25 Feb 2014 16:16:06 GMT</pubDate>
    <dc:creator />
    <dc:date>2014-02-25T16:16:06Z</dc:date>
    <item>
      <title>Lighten up the script</title>
      <link>https://community.qlik.com/t5/QlikView/Lighten-up-the-script/m-p/565686#M683493</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi everyone, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm resquesting your help for one little thing. I'm trying to lighten a part of my script. &lt;/P&gt;&lt;P&gt;The idea is : if you don't pay for the bill until a certain time, you've got interest.&lt;/P&gt;&lt;P&gt;According to the month and year, the time and the interest are not the same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" style="width: 756px;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD class="xl67" colspan="6" height="21" width="756"&gt;&lt;/TD&gt;&lt;TD class="xl67" colspan="6" height="21" width="756"&gt;&lt;P&gt;Before 01/07/2011 = 35 days / 8%&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl67" colspan="6" height="21" width="756"&gt;01/07/2011 - 30/12/2011 = 30 days /: 8,25%&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl67" colspan="6" height="21" width="756"&gt;2012 = 30 days : 8% &lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After, when I load my data, I want to calculate the interest.&lt;/P&gt;&lt;P&gt;So I've got : LOAD Date([Year],'DD/MM/YYYY') as Date_reception,&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Delay,&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Sum_bill.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But when I want to calculate the interest, I've got this ugly line : &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if(([Delay]&amp;gt;30) and ((([Sum_bill.]*if(((num(month([Date]))&amp;lt;7)and (num(year([Date]))=2012)),0.0825,if(((num(month([Date]))&amp;lt;7)and (num(year([Date]))=2011)),0.08,if((num(month([Date]))&amp;gt;=7) and (num(year([Date]))=2012),0.08,if(((num(month([Date]))&amp;gt;=7)and (num(year([Date]))=2011)),0.0825)))))*(([Delay]-30)/365))&amp;gt;5),(([Sum_bill.]*if(((num(month([Date]))&amp;lt;7)and (num(year([Date]))=2012)),0.0825,if(((num(month([Date]))&amp;lt;7)and (num(year([Date]))=2011)),0.08,if((num(month([Date]))&amp;gt;=7) and (num(year([Date]))=2012),0.08,if(((num(month([Date]))&amp;gt;=7)and (num(year([Date]))=2011)),0.0825)))))*(([Delay]-30)/365))) as interets.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you have any ideas to lighten up my script ? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance !&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Feb 2014 10:54:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Lighten-up-the-script/m-p/565686#M683493</guid>
      <dc:creator />
      <dc:date>2014-02-25T10:54:04Z</dc:date>
    </item>
    <item>
      <title>Re: Lighten up the script</title>
      <link>https://community.qlik.com/t5/QlikView/Lighten-up-the-script/m-p/565687#M683494</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Antonin,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would create another table that stores these numbers. Create a calendar or sth like that.&lt;/P&gt;&lt;P&gt;Use intervalmatch (see excellent post by HIC on that topic) so that each date has a Delay and a Interest Rate. You may also compute an interest rate by day, so that you just have to sum(Amount*IR by day)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Afterwards, it should be easier to sum up the interest rate.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Fabrice&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Feb 2014 10:59:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Lighten-up-the-script/m-p/565687#M683494</guid>
      <dc:creator />
      <dc:date>2014-02-25T10:59:13Z</dc:date>
    </item>
    <item>
      <title>Re: Lighten up the script</title>
      <link>https://community.qlik.com/t5/QlikView/Lighten-up-the-script/m-p/565688#M683495</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi antonin , my advice is to use calender object &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Feb 2014 11:26:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Lighten-up-the-script/m-p/565688#M683495</guid>
      <dc:creator>munna1317</dc:creator>
      <dc:date>2014-02-25T11:26:07Z</dc:date>
    </item>
    <item>
      <title>Re: Lighten up the script</title>
      <link>https://community.qlik.com/t5/QlikView/Lighten-up-the-script/m-p/565689#M683496</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for the answers, but now I'm struggling with the Intervalmatch().&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The structure is the next :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Mandat :&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;LOAD Date([Year],'DD/MM/YYYY') as Date_reception,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&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;"&gt;from [.../Délais 2012.xls]&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&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;"&gt;LOAD Date([Year],'DD/MM/YYYY') as Date_reception,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&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;"&gt;from [.../Délais 2013.xls]&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Interval : &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;date_from, date_to, taux_journalier, delai&lt;/P&gt;&lt;P&gt;01/01/2008, 31/12/2008, 0.00016411, 45&lt;/P&gt;&lt;P&gt;01/01/2009, 30/06/2009, 0.000246575, 40&lt;/P&gt;&lt;P&gt;01/07/2009, 31/12/2009, 0.000219178, 40&lt;/P&gt;&lt;P&gt;01/01/2010, 30/06/2010, 0.000219178, 35&lt;/P&gt;&lt;P&gt;01/07/2010, 31/12/2010, 0.000219178, 30&lt;/P&gt;&lt;P&gt;01/01/2011, 30/06/2011, 0.000219178, 30&lt;/P&gt;&lt;P&gt;01/07/2011, 31/12/2011, 0.000226027, 30&lt;/P&gt;&lt;P&gt;01/01/2012, 30/12/2012, 0.000219178, 30&lt;/P&gt;&lt;P&gt;01/01/2013, 30/12/2013, 0.000212329, 30&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Intervalmatch:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;IntervalMatch(Date_reception)&lt;/P&gt;&lt;P&gt;load distinct date_from, date_to, taux_journalier,delai Resident Interval;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But it never creates Intervalmatch, and nothing is linked. What did I miss ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Feb 2014 15:18:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Lighten-up-the-script/m-p/565689#M683496</guid>
      <dc:creator />
      <dc:date>2014-02-25T15:18:49Z</dc:date>
    </item>
    <item>
      <title>Re: Lighten up the script</title>
      <link>https://community.qlik.com/t5/QlikView/Lighten-up-the-script/m-p/565690#M683497</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Antonin,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I know that this isn't the real script, but make sure the field names match.&amp;nbsp; The date_reception will not match with Date_reception.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also make sure that the dates in the Inline are being interpreted as dates and not strings.&amp;nbsp; In QlikView do a num(date_from) to see if it returns a number or a null value in the case it is a string.&amp;nbsp; If it is a string load it again as a resident load and use the date#() function to convert the string to date format.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Karl &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Feb 2014 15:31:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Lighten-up-the-script/m-p/565690#M683497</guid>
      <dc:creator>pover</dc:creator>
      <dc:date>2014-02-25T15:31:03Z</dc:date>
    </item>
    <item>
      <title>Re: Lighten up the script</title>
      <link>https://community.qlik.com/t5/QlikView/Lighten-up-the-script/m-p/565691#M683498</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well, I edited my post, you scared me. I thought that it was just a mistake, and I didn't pay attention to it, but no, in my script, I used the same name everywhere.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And it gaves me a number when I do a num(date_from), : for the 01/01/2009 =&amp;gt; 39814. So Qlikview doesn't interprete it as a date, isn't it ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Feb 2014 15:57:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Lighten-up-the-script/m-p/565691#M683498</guid>
      <dc:creator />
      <dc:date>2014-02-25T15:57:10Z</dc:date>
    </item>
    <item>
      <title>Re: Lighten up the script</title>
      <link>https://community.qlik.com/t5/QlikView/Lighten-up-the-script/m-p/565692#M683499</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try the following script:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f6f6f6;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;Mandat :&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f6f6f6;"&gt;&lt;SPAN style="font-style: inherit;"&gt;LOAD Date([Year],'DD/MM/YYYY') as Date_reception,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f6f6f6;"&gt;&lt;SPAN style="font-style: inherit;"&gt;...&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f6f6f6;"&gt;&lt;SPAN style="font-style: inherit;"&gt;from [.../Délais 2012.xls]&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f6f6f6;"&gt;&lt;SPAN style="font-style: inherit;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f6f6f6;"&gt;&lt;SPAN style="font-style: inherit;"&gt;LOAD Date([Year],'DD/MM/YYYY') as Date_reception,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f6f6f6;"&gt;&lt;SPAN style="font-style: inherit;"&gt;...&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f6f6f6;"&gt;&lt;SPAN style="font-style: inherit;"&gt;from [.../Délais 2013.xls]&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f6f6f6;"&gt;&lt;SPAN style="font-style: inherit;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f6f6f6;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;Interval :&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f6f6f6;"&gt;LOAD * INLINE [&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f6f6f6;"&gt;date_from, date_to, taux_journalier, delai&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f6f6f6;"&gt;01/01/2008, 31/12/2008, 0.00016411, 45&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f6f6f6;"&gt;01/01/2009, 30/06/2009, 0.000246575, 40&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f6f6f6;"&gt;01/07/2009, 31/12/2009, 0.000219178, 40&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f6f6f6;"&gt;01/01/2010, 30/06/2010, 0.000219178, 35&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f6f6f6;"&gt;01/07/2010, 31/12/2010, 0.000219178, 30&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f6f6f6;"&gt;01/01/2011, 30/06/2011, 0.000219178, 30&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f6f6f6;"&gt;01/07/2011, 31/12/2011, 0.000226027, 30&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f6f6f6;"&gt;01/01/2012, 30/12/2012, 0.000219178, 30&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f6f6f6;"&gt;01/01/2013, 30/12/2013, 0.000212329, 30&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f6f6f6;"&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f6f6f6;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;Intervalmatch:&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f6f6f6;"&gt;IntervalMatch(Date_reception)&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f6f6f6;"&gt;load distinct date_from, date_to&amp;nbsp; Resident Interval;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Feb 2014 16:06:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Lighten-up-the-script/m-p/565692#M683499</guid>
      <dc:creator>pover</dc:creator>
      <dc:date>2014-02-25T16:06:19Z</dc:date>
    </item>
    <item>
      <title>Re: Lighten up the script</title>
      <link>https://community.qlik.com/t5/QlikView/Lighten-up-the-script/m-p/565693#M683500</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Antonin,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As said in the help file:&lt;/P&gt;&lt;P&gt;&lt;SPAN class="Italic"&gt;&lt;STRONG&gt;loadstatement&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt; or &lt;SPAN class="Italic"&gt;selectstatement&lt;/SPAN&gt; must result in a two-column table&lt;/STRONG&gt;,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Taux_Journalier and Delai are too many in the syntax. That is why.&lt;/P&gt;&lt;P&gt;Karl's syntax should work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Fabrice&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Feb 2014 16:16:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Lighten-up-the-script/m-p/565693#M683500</guid>
      <dc:creator />
      <dc:date>2014-02-25T16:16:06Z</dc:date>
    </item>
    <item>
      <title>Re: Lighten up the script</title>
      <link>https://community.qlik.com/t5/QlikView/Lighten-up-the-script/m-p/565694#M683501</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks a lot ! I wasn't paying attention to that sentence. Shame on me !&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Feb 2014 16:49:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Lighten-up-the-script/m-p/565694#M683501</guid>
      <dc:creator />
      <dc:date>2014-02-25T16:49:05Z</dc:date>
    </item>
    <item>
      <title>Re: Re: Lighten up the script</title>
      <link>https://community.qlik.com/t5/QlikView/Lighten-up-the-script/m-p/565695#M683502</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Antonin, please find the attached qvw for reference.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Feb 2014 16:58:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Lighten-up-the-script/m-p/565695#M683502</guid>
      <dc:creator />
      <dc:date>2014-02-25T16:58:59Z</dc:date>
    </item>
  </channel>
</rss>

