<?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: Loop to create QVD based on year in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Loop-to-create-QVD-based-on-year/m-p/2109503#M90602</link>
    <description>&lt;P&gt;Remove the square brackets from Booking Year. Those are messing up the script.&lt;/P&gt;</description>
    <pubDate>Thu, 24 Aug 2023 13:01:28 GMT</pubDate>
    <dc:creator>Or</dc:creator>
    <dc:date>2023-08-24T13:01:28Z</dc:date>
    <item>
      <title>Loop to create QVD based on year</title>
      <link>https://community.qlik.com/t5/App-Development/Loop-to-create-QVD-based-on-year/m-p/2109435#M90589</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I am trying to create multiple QVDs from another QVD based on the Booking Year.&amp;nbsp; I have this code in my script (orginally from this post&amp;nbsp;&lt;A href="https://community.qlik.com/t5/QlikView-App-Dev/How-to-create-Year-wise-Qvd-dynamically/td-p/1637440" target="_blank" rel="noopener"&gt;https://community.qlik.com/t5/QlikView-App-Dev/How-to-create-Year-wise-Qvd-dynamically/td-p/1637440&lt;/A&gt;) -&lt;/P&gt;
&lt;DIV&gt;TempYear:&lt;/DIV&gt;
&lt;DIV&gt;load Distinct [Booking Year]&lt;/DIV&gt;
&lt;DIV&gt;resident QV_SICS_Booking;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;LET NumRows=NoOfRows('TempYear');&lt;/DIV&gt;
&lt;DIV&gt;trace $(NumRows);&lt;/DIV&gt;
&lt;DIV&gt;For n=1 To $(NumRows)&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; let vYear = Peek('[Booking Year]',$(n),'TempYear'); &lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; trace $(vYear);&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; TempQV_SICS_Booking:&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; NoConcatenate&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; load *&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; resident QV_SICS_Booking&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; where [Booking Year] = $(vYear);&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; let vFileName='QV_SICS_Booking-'&amp;amp; $(vYear) ;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; store TempQV_SICS_Booking into D:\QVSOURCEDOCS\DEV\Source\QVD\$(vFileName).qvd (qvd);&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; drop table TempQV_SICS_Booking;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;next n;&lt;/DIV&gt;
&lt;DIV&gt;drop table TempYear;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;I get an error I cannot resolve.&amp;nbsp; The error is :&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;
&lt;DIV&gt;Field not found error&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;Field 'a' not found&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;TempQV_SICS_Booking:&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; NoConcatenate&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; load *&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; resident QV_SICS_Booking&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; where [Booking Year] =&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;It seems that there is an issue with the vYear variable.&amp;nbsp; If I use a value like 2022 in place of vYear it works.&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;I don't understand why it is not working with the vYear variable.&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;Any help or suggestions would be greatly&amp;nbsp;appreciated.&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;Thanks&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;Brian&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;/DIV&gt;</description>
      <pubDate>Thu, 24 Aug 2023 11:34:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Loop-to-create-QVD-based-on-year/m-p/2109435#M90589</guid>
      <dc:creator>Brip51</dc:creator>
      <dc:date>2023-08-24T11:34:50Z</dc:date>
    </item>
    <item>
      <title>Re: Loop to create QVD based on year</title>
      <link>https://community.qlik.com/t5/App-Development/Loop-to-create-QVD-based-on-year/m-p/2109440#M90590</link>
      <description>&lt;P&gt;Presumably, one of the steps in the sequence that populates the year isn't correct. I'd suggest running the code in debug mode and following the steps to see where it goes wrong. &lt;/P&gt;</description>
      <pubDate>Thu, 24 Aug 2023 11:57:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Loop-to-create-QVD-based-on-year/m-p/2109440#M90590</guid>
      <dc:creator>Or</dc:creator>
      <dc:date>2023-08-24T11:57:40Z</dc:date>
    </item>
    <item>
      <title>Re: Loop to create QVD based on year</title>
      <link>https://community.qlik.com/t5/App-Development/Loop-to-create-QVD-based-on-year/m-p/2109448#M90591</link>
      <description>&lt;P&gt;first can u check is any value stored in&amp;nbsp;&lt;SPAN&gt;vYear variable,if yes then&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;can u place variables in single quotes like&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;where [Booking Year] = '$(vYear)';&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 24 Aug 2023 12:05:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Loop-to-create-QVD-based-on-year/m-p/2109448#M90591</guid>
      <dc:creator>anat</dc:creator>
      <dc:date>2023-08-24T12:05:12Z</dc:date>
    </item>
    <item>
      <title>Re: Loop to create QVD based on year</title>
      <link>https://community.qlik.com/t5/App-Development/Loop-to-create-QVD-based-on-year/m-p/2109455#M90593</link>
      <description>&lt;P&gt;It looks like vYear does not have any values stored in it.&lt;/P&gt;
&lt;P&gt;It will run if I add quotes -&amp;nbsp; 'vYear' , but it doesn't generate the QVDs (no data)&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Brip51_0-1692879120535.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/115096iC0553CCDE8447F6E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Brip51_0-1692879120535.png" alt="Brip51_0-1692879120535.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 24 Aug 2023 12:13:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Loop-to-create-QVD-based-on-year/m-p/2109455#M90593</guid>
      <dc:creator>Brip51</dc:creator>
      <dc:date>2023-08-24T12:13:56Z</dc:date>
    </item>
    <item>
      <title>Re: Loop to create QVD based on year</title>
      <link>https://community.qlik.com/t5/App-Development/Loop-to-create-QVD-based-on-year/m-p/2109458#M90594</link>
      <description>&lt;P&gt;Thank you.&amp;nbsp; When I step through, vYear is not populated so it must be something in&lt;/P&gt;
&lt;P&gt;let vYear = Peek('[Booking Year]',$(n)-1,'TempYear');&lt;/P&gt;
&lt;P&gt;I haven't figured what is going wrong there.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 24 Aug 2023 12:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Loop-to-create-QVD-based-on-year/m-p/2109458#M90594</guid>
      <dc:creator>Brip51</dc:creator>
      <dc:date>2023-08-24T12:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Loop to create QVD based on year</title>
      <link>https://community.qlik.com/t5/App-Development/Loop-to-create-QVD-based-on-year/m-p/2109461#M90595</link>
      <description>&lt;P&gt;seems below script not functioning ,can u check what $(n) output while running&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;let vYear = Peek('[Booking Year]',$(n),'TempYear');&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 24 Aug 2023 12:23:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Loop-to-create-QVD-based-on-year/m-p/2109461#M90595</guid>
      <dc:creator>anat</dc:creator>
      <dc:date>2023-08-24T12:23:19Z</dc:date>
    </item>
    <item>
      <title>Re: Loop to create QVD based on year</title>
      <link>https://community.qlik.com/t5/App-Development/Loop-to-create-QVD-based-on-year/m-p/2109465#M90596</link>
      <description>&lt;P&gt;The code you originally posted is:&lt;/P&gt;
&lt;P&gt;let vYear = Peek('[Booking Year]',$(n),'TempYear');&lt;/P&gt;
&lt;P&gt;Adding the -1 should be correct, but your original code doesn't seem to have that?&lt;/P&gt;
&lt;P&gt;[Edit] That said, the issue here is the square brackets. They need to be removed. &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 24 Aug 2023 12:28:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Loop-to-create-QVD-based-on-year/m-p/2109465#M90596</guid>
      <dc:creator>Or</dc:creator>
      <dc:date>2023-08-24T12:28:56Z</dc:date>
    </item>
    <item>
      <title>Re: Loop to create QVD based on year</title>
      <link>https://community.qlik.com/t5/App-Development/Loop-to-create-QVD-based-on-year/m-p/2109467#M90597</link>
      <description>&lt;P&gt;try executing below code&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;let vYear = Peek('[Booking Year]',&lt;STRONG&gt;n&lt;/STRONG&gt;,'TempYear');&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 24 Aug 2023 12:26:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Loop-to-create-QVD-based-on-year/m-p/2109467#M90597</guid>
      <dc:creator>anat</dc:creator>
      <dc:date>2023-08-24T12:26:26Z</dc:date>
    </item>
    <item>
      <title>Re: Loop to create QVD based on year</title>
      <link>https://community.qlik.com/t5/App-Development/Loop-to-create-QVD-based-on-year/m-p/2109475#M90598</link>
      <description>&lt;P&gt;Yes it should have -1.&amp;nbsp; My mistake when I posted the original code.&amp;nbsp; I was testing n.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It does not work if I hard-code the middle value (n).&amp;nbsp; It fails on the first value.&lt;/P&gt;</description>
      <pubDate>Thu, 24 Aug 2023 12:33:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Loop-to-create-QVD-based-on-year/m-p/2109475#M90598</guid>
      <dc:creator>Brip51</dc:creator>
      <dc:date>2023-08-24T12:33:12Z</dc:date>
    </item>
    <item>
      <title>Re: Loop to create QVD based on year</title>
      <link>https://community.qlik.com/t5/App-Development/Loop-to-create-QVD-based-on-year/m-p/2109478#M90599</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Using&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;let vYear = Peek('[Booking Year]',&lt;/SPAN&gt;&lt;STRONG&gt;n&lt;/STRONG&gt;&lt;SPAN&gt;,'TempYear');&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;It fails with the original error&lt;/P&gt;</description>
      <pubDate>Thu, 24 Aug 2023 12:36:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Loop-to-create-QVD-based-on-year/m-p/2109478#M90599</guid>
      <dc:creator>Brip51</dc:creator>
      <dc:date>2023-08-24T12:36:11Z</dc:date>
    </item>
    <item>
      <title>Re: Loop to create QVD based on year</title>
      <link>https://community.qlik.com/t5/App-Development/Loop-to-create-QVD-based-on-year/m-p/2109503#M90602</link>
      <description>&lt;P&gt;Remove the square brackets from Booking Year. Those are messing up the script.&lt;/P&gt;</description>
      <pubDate>Thu, 24 Aug 2023 13:01:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Loop-to-create-QVD-based-on-year/m-p/2109503#M90602</guid>
      <dc:creator>Or</dc:creator>
      <dc:date>2023-08-24T13:01:28Z</dc:date>
    </item>
    <item>
      <title>Re: Loop to create QVD based on year</title>
      <link>https://community.qlik.com/t5/App-Development/Loop-to-create-QVD-based-on-year/m-p/2109508#M90603</link>
      <description>&lt;P&gt;Your struggling is caused from peek() which starts with an index of 0. This means by looping from 1 to noofrows() you will skip the first value which won't result in a load-error but the max. value from noofrows() is greater as the max. possible index-value for peek() which results in NULL for peek() and this will remove the variable.&lt;/P&gt;
&lt;P&gt;Therefore just use as iteration-logic:&lt;/P&gt;
&lt;P&gt;for n = 0 to noofrows('table') - 1&lt;/P&gt;
&lt;P&gt;and then you could call $(n) within the peek().&lt;/P&gt;
&lt;P&gt;Beside this if there are any performance-issue with this data-set there would be a lot potential to optimize this slicing approach.&lt;/P&gt;</description>
      <pubDate>Thu, 24 Aug 2023 13:04:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Loop-to-create-QVD-based-on-year/m-p/2109508#M90603</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2023-08-24T13:04:30Z</dc:date>
    </item>
    <item>
      <title>Re: Loop to create QVD based on year</title>
      <link>https://community.qlik.com/t5/App-Development/Loop-to-create-QVD-based-on-year/m-p/2109511#M90605</link>
      <description>&lt;P&gt;I tried that-&lt;/P&gt;
&lt;P&gt;let vYear =Peek('Booking Year',$(n)-1,'TempYear')&lt;/P&gt;
&lt;P&gt;same error.&amp;nbsp; vYear is null.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 24 Aug 2023 13:11:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Loop-to-create-QVD-based-on-year/m-p/2109511#M90605</guid>
      <dc:creator>Brip51</dc:creator>
      <dc:date>2023-08-24T13:11:25Z</dc:date>
    </item>
    <item>
      <title>Re: Loop to create QVD based on year</title>
      <link>https://community.qlik.com/t5/App-Development/Loop-to-create-QVD-based-on-year/m-p/2109573#M90613</link>
      <description>&lt;P&gt;Thanks Marcus.&amp;nbsp; That worked.&lt;/P&gt;
&lt;P&gt;I am not sure what you mean on this -&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/28038"&gt;@marcus_sommer&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Beside this if there are any performance-issue with this data-set there would be a lot potential to optimize this slicing approach.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Do you mean optimize before the slicing ?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Working script-&lt;/P&gt;
&lt;P&gt;TempYear:&lt;BR /&gt;load Distinct [Booking Year]&lt;BR /&gt;resident QV_SICS_Booking;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;//let vYear =Peek('Booking Year',0,'TempYear');&lt;/P&gt;
&lt;P&gt;LET NumRows=NoOfRows('TempYear');&lt;BR /&gt;trace $(NumRows);&lt;BR /&gt;&lt;STRONG&gt;For n=0 To $(NumRows)-1&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;let vYear=Peek('Booking Year',$(n),'TempYear') ;&lt;BR /&gt;//&lt;BR /&gt;//2022 &lt;BR /&gt;trace $(vYear);&lt;BR /&gt;TempQV_SICS_Booking:&lt;BR /&gt;NoConcatenate&lt;BR /&gt;load *&lt;BR /&gt;resident QV_SICS_Booking &lt;BR /&gt;where [Booking Year] = $(vYear);&lt;BR /&gt;&lt;BR /&gt;let vFileName='QV_SICS_Booking-'&amp;amp; $(vYear) ;&lt;BR /&gt;store TempQV_SICS_Booking into D:\QVSOURCEDOCS\DEV\Source\QVD\$(vFileName).qvd (qvd);&lt;BR /&gt;drop table TempQV_SICS_Booking;&lt;BR /&gt;next n;&lt;BR /&gt;drop table TempYear;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks agian,&lt;/P&gt;
&lt;P&gt;Brian&lt;/P&gt;</description>
      <pubDate>Thu, 24 Aug 2023 14:49:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Loop-to-create-QVD-based-on-year/m-p/2109573#M90613</guid>
      <dc:creator>Brip51</dc:creator>
      <dc:date>2023-08-24T14:49:50Z</dc:date>
    </item>
    <item>
      <title>Re: Loop to create QVD based on year</title>
      <link>https://community.qlik.com/t5/App-Development/Loop-to-create-QVD-based-on-year/m-p/2109603#M90619</link>
      <description>&lt;P&gt;Optimizing means doing something like this:&lt;/P&gt;
&lt;P&gt;t1: load num(fieldvalue('Booking Year', recno())) as X autogenerate fieldvaluecount('Booking Year');&lt;BR /&gt;drop tables QV_SICS_Booking;&lt;/P&gt;
&lt;P&gt;for i = 1 to fieldvaluecount('X')&lt;BR /&gt;&amp;nbsp; &amp;nbsp;t2: load num(fieldvalue('X', $(i))) as [Booking Year] autogenerate 1;&lt;BR /&gt;&amp;nbsp; &amp;nbsp;t3: load * from QV_SICS_Booking.qvd (qvd) where exists([Booking Year]);&lt;BR /&gt;&amp;nbsp; &amp;nbsp;store t3 into QV_SICS_Booking_$(i).qvd (qvd); drop tables t2, t3;&lt;BR /&gt;next&lt;BR /&gt;drop tables t1;&lt;/P&gt;
&lt;P&gt;respectively as description:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;not to load resident to read the available values of a table else to load this information from the system-table which has just the distinct field-values&lt;/LI&gt;
&lt;LI&gt;to drop the resident table to release the RAM&lt;/LI&gt;
&lt;LI&gt;then in the loop writing each single value into a field&lt;/LI&gt;
&lt;LI&gt;which is used as exists() condition to keep the qvd-loading optimized&lt;/LI&gt;
&lt;LI&gt;storing the chunk and dropping the temp-tables&lt;/LI&gt;
&lt;/UL&gt;</description>
      <pubDate>Thu, 24 Aug 2023 15:36:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Loop-to-create-QVD-based-on-year/m-p/2109603#M90619</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2023-08-24T15:36:22Z</dc:date>
    </item>
    <item>
      <title>Re: Loop to create QVD based on year</title>
      <link>https://community.qlik.com/t5/App-Development/Loop-to-create-QVD-based-on-year/m-p/2109639#M90622</link>
      <description>&lt;P&gt;Hi Marcus&lt;/P&gt;
&lt;P&gt;This is great info.&amp;nbsp; I did not even think to think of this...&lt;/P&gt;
&lt;P&gt;Thank You!&lt;/P&gt;</description>
      <pubDate>Thu, 24 Aug 2023 17:28:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Loop-to-create-QVD-based-on-year/m-p/2109639#M90622</guid>
      <dc:creator>Brip51</dc:creator>
      <dc:date>2023-08-24T17:28:31Z</dc:date>
    </item>
  </channel>
</rss>

