<?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: Load in for each loop that iterates over months in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Load-in-for-each-loop-that-iterates-over-months/m-p/41927#M608155</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;I guess you're looking for something like this?:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="QlikCommunity_Thread_296776_Pic1.JPG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/198188_QlikCommunity_Thread_296776_Pic1.JPG" style="height: auto; width: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_15227036108446599 jive_text_macro" jivemacro_uid="_15227036108446599"&gt;
&lt;P&gt;table1:&lt;/P&gt;
&lt;P&gt;LOAD Name,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Date([Start Date]) as [Start Date],&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Money([2019 NTC Direct Labor]) as [2019 NTC Direct Labor],&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Month(Date#(IterNo(),'M')) as Month,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Money(If(IterNo()&amp;gt;=Month([Start Date]),[2019 NTC Direct Labor]/(13-Month([Start Date])),0)) as [Direct Labor]&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;FROM [&lt;/SPAN&gt;&lt;A class="" data-containerid="-1" data-containertype="-1" data-objectid="320502" data-objecttype="13" href="https://community.qlik.com/servlet/JiveServlet/download/2061-296776-1463115-320502/Example.xlsx"&gt;https://community.qlik.com/servlet/JiveServlet/download/1463115-320502/Example.xlsx&lt;/A&gt;&lt;SPAN&gt;] (ooxml, embedded labels, table is Sheet1)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;While IterNo()&amp;lt;=12;&lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Marco&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 02 Apr 2018 21:13:56 GMT</pubDate>
    <dc:creator>MarcoWedel</dc:creator>
    <dc:date>2018-04-02T21:13:56Z</dc:date>
    <item>
      <title>Load in for each loop that iterates over months</title>
      <link>https://community.qlik.com/t5/QlikView/Load-in-for-each-loop-that-iterates-over-months/m-p/41925#M608153</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Qlik Community,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a spreadsheet that has a name, start date, a yearly labor cost. What I want to do is evenly divide the labor cost by the 12 months in a year - start date, in other words, the remaining months in the year. For example, if the start date was June 15, and the labor cost for the year was 1000 dollars, then the labor cost for June would be yearly labor cost / (12 - 6(June) + 1), for July labor cost would be yearly labor cost / (12 - 6(June) + 1), etc. The labor cost for the months before start date would just be 0. My load script is executing with no errors but the data is not loading correctly. There are the correct number of rows being loaded (1080) but direct labor is always 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you in advance,&lt;/P&gt;&lt;P&gt;Zach&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;for each mon in 'January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December'&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt; LOAD&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "Name",&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Date("Start Date",'MM DD YY') as "Start Date",&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "Direct Labor",&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; '$(mon)' as Month,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if('$(mon)' &amp;gt; num(month("Award Date")), 0, "Direct Labor" / (12 - num(month("Award Date")) + 1)) as "Direct Labor",&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "Base Years",&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "Option Years",&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "2019 Performance Months"&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt; FROM [lib://AttachedFiles/Example.xlsx]&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt; (ooxml, embedded labels, table is [Direct Labor]);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;next&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Apr 2018 18:56:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-in-for-each-loop-that-iterates-over-months/m-p/41925#M608153</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-04-02T18:56:23Z</dc:date>
    </item>
    <item>
      <title>Re: Load in for each loop that iterates over months</title>
      <link>https://community.qlik.com/t5/QlikView/Load-in-for-each-loop-that-iterates-over-months/m-p/41926#M608154</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Using your example (There is no column in there called "Award Date", by the way) I came up with this:&lt;/P&gt;&lt;P&gt;(No loop required)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier\ new, courier;"&gt;SET MonthNumbers='1;2;3;4;5;6;7;8;9;10;11;12';&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier\ new, courier;"&gt;MonthDivide:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier\ new, courier;"&gt;LOAD *,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier\ new, courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(MonthNum&amp;gt;=StartNum,Round((DirectLaborTotal / divisor),0.01),0) as "DirectLabor"&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier\ new, courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier\ new, courier;"&gt;LOAD&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier\ new, courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Name,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier\ new, courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Date("Start Date") as "Start Date",&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier\ new, courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Num(Month(Date("Start Date"))) as StartNum,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier\ new, courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Num(SubField('$(MonthNumbers)', ';')) as MonthNum,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier\ new, courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 12 - (num(month("Start Date")-1)) as divisor,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier\ new, courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Num("2019 NTC Direct Labor") as DirectLaborTotal&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier\ new, courier;"&gt;FROM [lib://Desktop/Example.xlsx]&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier\ new, courier;"&gt;(ooxml, embedded labels, table is Sheet1)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier\ new, courier;"&gt;WHERE ISNull(Name) = 0;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Apr 2018 21:06:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-in-for-each-loop-that-iterates-over-months/m-p/41926#M608154</guid>
      <dc:creator>dezrrehm</dc:creator>
      <dc:date>2018-04-02T21:06:43Z</dc:date>
    </item>
    <item>
      <title>Re: Load in for each loop that iterates over months</title>
      <link>https://community.qlik.com/t5/QlikView/Load-in-for-each-loop-that-iterates-over-months/m-p/41927#M608155</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;I guess you're looking for something like this?:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="QlikCommunity_Thread_296776_Pic1.JPG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/198188_QlikCommunity_Thread_296776_Pic1.JPG" style="height: auto; width: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_15227036108446599 jive_text_macro" jivemacro_uid="_15227036108446599"&gt;
&lt;P&gt;table1:&lt;/P&gt;
&lt;P&gt;LOAD Name,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Date([Start Date]) as [Start Date],&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Money([2019 NTC Direct Labor]) as [2019 NTC Direct Labor],&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Month(Date#(IterNo(),'M')) as Month,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Money(If(IterNo()&amp;gt;=Month([Start Date]),[2019 NTC Direct Labor]/(13-Month([Start Date])),0)) as [Direct Labor]&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;FROM [&lt;/SPAN&gt;&lt;A class="" data-containerid="-1" data-containertype="-1" data-objectid="320502" data-objecttype="13" href="https://community.qlik.com/servlet/JiveServlet/download/2061-296776-1463115-320502/Example.xlsx"&gt;https://community.qlik.com/servlet/JiveServlet/download/1463115-320502/Example.xlsx&lt;/A&gt;&lt;SPAN&gt;] (ooxml, embedded labels, table is Sheet1)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;While IterNo()&amp;lt;=12;&lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Marco&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Apr 2018 21:13:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-in-for-each-loop-that-iterates-over-months/m-p/41927#M608155</guid>
      <dc:creator>MarcoWedel</dc:creator>
      <dc:date>2018-04-02T21:13:56Z</dc:date>
    </item>
    <item>
      <title>Re: Load in for each loop that iterates over months</title>
      <link>https://community.qlik.com/t5/QlikView/Load-in-for-each-loop-that-iterates-over-months/m-p/41928#M608156</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Marco,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Perfect!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That is exactly what I am looking for, thank you very much. Quick follow on, say I had another field in my spreadsheet, numMonths, which specified the number of months labor costs should be split across. Say start in August and duration was two months, the total labor cost should only be split across August and September. I need to add something to the if statement, so far I have something like this but I cannot seem to get it:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Money(If(IterNo()&amp;gt;=Month([Start Date]) and '$(Month)' &amp;lt;= Month([StartDate]) + Month(Date#([numMonths], 'M')),[2019 NTC Direct Labor]/numMonths,0)) as [Direct Labor]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Zach&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Apr 2018 22:29:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-in-for-each-loop-that-iterates-over-months/m-p/41928#M608156</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-04-02T22:29:03Z</dc:date>
    </item>
    <item>
      <title>Re: Load in for each loop that iterates over months</title>
      <link>https://community.qlik.com/t5/QlikView/Load-in-for-each-loop-that-iterates-over-months/m-p/41929#M608157</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Russ, also exactly what I was looking for. Apologize about the field confusion. Had to change an internal sheet.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Zach&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Apr 2018 22:31:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-in-for-each-loop-that-iterates-over-months/m-p/41929#M608157</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-04-02T22:31:07Z</dc:date>
    </item>
    <item>
      <title>Re: Load in for each loop that iterates over months</title>
      <link>https://community.qlik.com/t5/QlikView/Load-in-for-each-loop-that-iterates-over-months/m-p/41930#M608158</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Nice to hear that it works for you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please close your thread if your initial question is answered.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Marco&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Apr 2018 20:15:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-in-for-each-loop-that-iterates-over-months/m-p/41930#M608158</guid>
      <dc:creator>MarcoWedel</dc:creator>
      <dc:date>2018-04-03T20:15:23Z</dc:date>
    </item>
    <item>
      <title>Re: Load in for each loop that iterates over months</title>
      <link>https://community.qlik.com/t5/QlikView/Load-in-for-each-loop-that-iterates-over-months/m-p/41931#M608159</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I believe I have just done so (press mark correct answer.) Any insight into follow up question regarding changing the if condition?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Zach&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Apr 2018 20:37:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-in-for-each-loop-that-iterates-over-months/m-p/41931#M608159</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-04-03T20:37:54Z</dc:date>
    </item>
    <item>
      <title>Re: Load in for each loop that iterates over months</title>
      <link>https://community.qlik.com/t5/QlikView/Load-in-for-each-loop-that-iterates-over-months/m-p/41932#M608160</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;thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;adding some &lt;SPAN style="font-size: 13.3333px;"&gt;numMonths values to your example, one solution could be:&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;IMG alt="QlikCommunity_Thread_296776_Pic2.JPG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/198355_QlikCommunity_Thread_296776_Pic2.JPG" style="height: auto; width: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_15227891509274987 jive_text_macro" jivemacro_uid="_15227891509274987"&gt;
&lt;P&gt;table1:&lt;/P&gt;
&lt;P&gt;LOAD Name,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Date([Start Date]) as [Start Date],&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Money([2019 NTC Direct Labor]) as [2019 NTC Direct Labor],&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Month(Date#(IterNo(),'M')) as Month,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Money(If(IterNo()&amp;gt;=Month([Start Date]) and IterNo()&amp;lt;Month([Start Date])+numMonths,[2019 NTC Direct Labor]/numMonths,0)) as [Direct Labor]&lt;/P&gt;
&lt;P&gt;INLINE [&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Name, Start Date, 2019 NTC Direct Labor, numMonths&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; A, 43313, 30000, 2&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; B, 43252,&amp;nbsp; 5000, 6&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; C, 43235, 10000, 8&lt;/P&gt;
&lt;P&gt;]&lt;/P&gt;
&lt;P&gt;While IterNo()&amp;lt;=12;&lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Marco&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Apr 2018 20:59:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-in-for-each-loop-that-iterates-over-months/m-p/41932#M608160</guid>
      <dc:creator>MarcoWedel</dc:creator>
      <dc:date>2018-04-03T20:59:41Z</dc:date>
    </item>
  </channel>
</rss>

