<?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 multiple qvd's in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Load-multiple-qvd-s/m-p/137574#M764380</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;STRONG style="font-size: 11.7px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;A href="https://community.qlik.com/people/ashok_ravichandran"&gt;ashok_ravichandran&lt;/A&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Please check and mark the Correct Answer and close the tread. Thank you.&lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 13 Jul 2018 07:40:32 GMT</pubDate>
    <dc:creator>qlikviewwizard</dc:creator>
    <dc:date>2018-07-13T07:40:32Z</dc:date>
    <item>
      <title>Load multiple qvd's</title>
      <link>https://community.qlik.com/t5/QlikView/Load-multiple-qvd-s/m-p/137567#M764373</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi team,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In daily basis this qvd's are generated.&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Screenshot_2.png" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/207747_Screenshot_2.png" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;The scenario i am facing is how bring all these qvd's into single block in script.( using For loop)&lt;/P&gt;&lt;P&gt;And how to identity only Mondays present in the qvd's and load them in script.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please give your suggestions &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards &lt;/P&gt;&lt;P&gt;Ashok ravichandran &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-multiple-qvd-s/m-p/137567#M764373</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Load multiple qvd's</title>
      <link>https://community.qlik.com/t5/QlikView/Load-multiple-qvd-s/m-p/137568#M764374</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey,&lt;/P&gt;&lt;P&gt;For the Load Script it is pretty easy once you know how to do it. You can pretty much do Load * From &lt;EM&gt;PATH&lt;/EM&gt;/ABCD_fact*.qvd and this will load all your qvds in. If you want only Mondays, you can make a date variable like:&lt;/P&gt;&lt;P&gt;let a = 0;&lt;/P&gt;&lt;P&gt;let vDate = Date(Today() - a, 'MMDDYYYY');&lt;/P&gt;&lt;P&gt;a will be the counter for your loop and for your days.&lt;/P&gt;&lt;P&gt;Lets say you only want the last 60 days of Mondays:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;let a = 0;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;let vDate = Date(Today() - a, 'MMDDYYYY');&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Do while (a &amp;lt; 60)&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(num(weekday(vDate) = 0) then&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Load * &lt;SPAN style="font-size: 13.3333px;"&gt;From &lt;/SPAN&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;EM&gt;PATH&lt;/EM&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;/ABCD_fact$(vDate).qvd;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; end if&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;let a = a + 1;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;let vDate = Date(Today() - a, 'MMDDYYYY');&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Loop&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Now this is just an example so you will probably have to adjust some things (e.g. PATH should be changed to the correct path).&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Let me know how that goes.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jul 2018 18:40:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-multiple-qvd-s/m-p/137568#M764374</guid>
      <dc:creator>groveliam</dc:creator>
      <dc:date>2018-07-12T18:40:53Z</dc:date>
    </item>
    <item>
      <title>Re: Load multiple qvd's</title>
      <link>https://community.qlik.com/t5/QlikView/Load-multiple-qvd-s/m-p/137569#M764375</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Also if you experience an error that stops the loop, just put the following statement above the do while line:&lt;/P&gt;&lt;P&gt;let ErrorMode = 0;&lt;/P&gt;&lt;P&gt;It will still look like there is an error, but that just means there is no file associated with that name and it will skip it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jul 2018 18:44:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-multiple-qvd-s/m-p/137569#M764375</guid>
      <dc:creator>groveliam</dc:creator>
      <dc:date>2018-07-12T18:44:19Z</dc:date>
    </item>
    <item>
      <title>Re: Load multiple qvd's</title>
      <link>https://community.qlik.com/t5/QlikView/Load-multiple-qvd-s/m-p/137570#M764376</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt;TMP:&lt;BR /&gt; &lt;/SPAN&gt;&lt;STRONG style="color: blue; font-size: 9.0pt; font-family: 'Courier New';"&gt;LOAD&lt;/STRONG&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt; *,&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: blue;"&gt;DATE&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: blue;"&gt;date#&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: blue;"&gt;KeepChar&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: blue;"&gt;FileName&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt;(),'0123456789'),'MMDDYYYY'),'MM/DD/YYYY') &lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: blue;"&gt;as&lt;/SPAN&gt; &lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: maroon;"&gt;dateFile&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt; &lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: blue;"&gt;FROM&lt;/SPAN&gt; &lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: maroon;"&gt;[..\H\qvdFolder\*.qvd]&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt; (&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: blue;"&gt;qvd&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt;);&lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; SUM:&lt;BR /&gt; &lt;/SPAN&gt;&lt;STRONG style="color: blue; font-size: 9.0pt; font-family: 'Courier New';"&gt;LOAD&lt;/STRONG&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt; *, &lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: blue;"&gt;WeekDay&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: maroon;"&gt;dateFile&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt;) &lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: blue;"&gt;AS&lt;/SPAN&gt; &lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: maroon;"&gt;DayNam&lt;/SPAN&gt; &lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: blue;"&gt;Resident&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt; TMP&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: blue;"&gt;Where&lt;/SPAN&gt; &lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: blue;"&gt;NUM&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: blue;"&gt;WeekDay&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: maroon;"&gt;dateFile&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt;))=0&lt;BR /&gt; ;&lt;BR /&gt; &lt;BR /&gt; &lt;/SPAN&gt;&lt;STRONG style="color: blue; font-size: 9.0pt; font-family: 'Courier New';"&gt;DROP&lt;/STRONG&gt; &lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: blue;"&gt;Table&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt; TMP; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt;**********&lt;/SPAN&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;0 for Monday&lt;/LI&gt;&lt;LI&gt;1 for Tuesday&lt;/LI&gt;&lt;LI&gt;2 for Wednesday&lt;/LI&gt;&lt;LI&gt;3 for Thursday&lt;/LI&gt;&lt;LI&gt;4 for Friday&lt;/LI&gt;&lt;LI&gt;5 for Saturday&lt;/LI&gt;&lt;LI&gt;6 for Sunday&lt;/LI&gt;&lt;/UL&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jul 2018 21:20:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-multiple-qvd-s/m-p/137570#M764376</guid>
      <dc:creator>el_aprendiz111</dc:creator>
      <dc:date>2018-07-12T21:20:37Z</dc:date>
    </item>
    <item>
      <title>Re: Load multiple qvd's</title>
      <link>https://community.qlik.com/t5/QlikView/Load-multiple-qvd-s/m-p/137571#M764377</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;STRONG style="font-size: 11.7px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;A _jive_internal="true" data-avatarid="-1" data-userid="273664" data-username="ashok_ravichandran" href="https://community.qlik.com/people/ashok_ravichandran" style="padding: 0 3px 0 0; font-weight: inherit; font-style: inherit; font-size: 1.1em; font-family: inherit; color: #3778c7;"&gt;Ashok Ravichandran&lt;/A&gt;&lt;/STRONG&gt;,&lt;/P&gt;&lt;P&gt;Hereis the solution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Data:&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;LOAD ID, &lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; DATE, &lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SALES,&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FileName() as FileName&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;FROM&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;C&gt;&lt;/C&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;(qvd)&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;WHERE WEEKDAY(DATE(DATE#(MID(FileName(),10,8),'DDMMYYYY'))) ='Mon';&lt;/P&gt;&lt;P&gt;&lt;IMG alt="1.png" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/207760_1.png" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="2.png" class="jive-image image-2" src="https://community.qlik.com/legacyfs/online/207764_2.png" style="height: 292px; width: 620px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Jul 2018 01:51:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-multiple-qvd-s/m-p/137571#M764377</guid>
      <dc:creator>qlikviewwizard</dc:creator>
      <dc:date>2018-07-13T01:51:39Z</dc:date>
    </item>
    <item>
      <title>Re: Load multiple qvd's</title>
      <link>https://community.qlik.com/t5/QlikView/Load-multiple-qvd-s/m-p/137572#M764378</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Liam, &lt;/P&gt;&lt;P&gt;Thanks for your suggestion, let me work it out and get back to you!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Jul 2018 07:36:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-multiple-qvd-s/m-p/137572#M764378</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-07-13T07:36:36Z</dc:date>
    </item>
    <item>
      <title>Re: Load multiple qvd's</title>
      <link>https://community.qlik.com/t5/QlikView/Load-multiple-qvd-s/m-p/137573#M764379</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Arjun Bro,&lt;/P&gt;&lt;P&gt;Once again thanks for your suggestion,Let me work it out and get back to you!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Jul 2018 07:38:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-multiple-qvd-s/m-p/137573#M764379</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-07-13T07:38:36Z</dc:date>
    </item>
    <item>
      <title>Re: Load multiple qvd's</title>
      <link>https://community.qlik.com/t5/QlikView/Load-multiple-qvd-s/m-p/137574#M764380</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;STRONG style="font-size: 11.7px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;A href="https://community.qlik.com/people/ashok_ravichandran"&gt;ashok_ravichandran&lt;/A&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Please check and mark the Correct Answer and close the tread. Thank you.&lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Jul 2018 07:40:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-multiple-qvd-s/m-p/137574#M764380</guid>
      <dc:creator>qlikviewwizard</dc:creator>
      <dc:date>2018-07-13T07:40:32Z</dc:date>
    </item>
    <item>
      <title>Re: Load multiple qvd's</title>
      <link>https://community.qlik.com/t5/QlikView/Load-multiple-qvd-s/m-p/137575#M764381</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It Worked thanks Arjun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Jul 2018 11:15:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-multiple-qvd-s/m-p/137575#M764381</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-07-13T11:15:32Z</dc:date>
    </item>
  </channel>
</rss>

