<?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: QVD Period in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/QVD-Period/m-p/376336#M140291</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Any Help?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 08 Aug 2012 16:59:50 GMT</pubDate>
    <dc:creator>pgalvezt</dc:creator>
    <dc:date>2012-08-08T16:59:50Z</dc:date>
    <item>
      <title>QVD Period</title>
      <link>https://community.qlik.com/t5/QlikView/QVD-Period/m-p/376335#M140290</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello, Im connected by OLE DB on many databases (Differents folders with many clients and months) to get all thouse connections Im using LOAD *, 'Site' as Source; LOAD *, 'Site1' as Source;LOAD *, 'Site3' as Source; and so on for each connection. Finally I Stored them as BasesTarjetas. Now Im Trying to generate qvds by months because the current qvd is too heavy. Reading in the forum I found this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" href="https://community.qlik.com/message/200824#200824"&gt;http://community.qlik.com/message/200824#200824&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried to do the same thing with Resident table but it QVD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Temp:&lt;BR /&gt;LOAD&amp;nbsp; Distinct Month(TDCORTE2) AS MonthName&lt;BR /&gt;resident BasesTarjetas;&lt;/P&gt;&lt;P&gt; &lt;BR /&gt;LET vCount=NoOfRows('Temp');&lt;BR /&gt;FOR i=0 to $(vCount)&lt;BR /&gt;LET vMonth = Peek('MonthName',$(i),'Temp');&lt;/P&gt;&lt;P&gt; &lt;BR /&gt; &lt;BR /&gt;MonthWise:&lt;BR /&gt;LOAD *&lt;BR /&gt;Resident BasesTarjetas&lt;BR /&gt;Where Month(TDCORTE2) = '$(vMonth)';&lt;/P&gt;&lt;P&gt;STORE MonthWise into Month\$(vMonth).qvd;&lt;/P&gt;&lt;P&gt;DROP Table MonthWise;&lt;/P&gt;&lt;P&gt;Next&lt;BR /&gt;DROP Table Temp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;!Warning Message Table not found!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Aug 2012 15:40:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/QVD-Period/m-p/376335#M140290</guid>
      <dc:creator>pgalvezt</dc:creator>
      <dc:date>2012-08-08T15:40:42Z</dc:date>
    </item>
    <item>
      <title>Re: QVD Period</title>
      <link>https://community.qlik.com/t5/QlikView/QVD-Period/m-p/376336#M140291</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Any Help?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Aug 2012 16:59:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/QVD-Period/m-p/376336#M140291</guid>
      <dc:creator>pgalvezt</dc:creator>
      <dc:date>2012-08-08T16:59:50Z</dc:date>
    </item>
    <item>
      <title>Re: QVD Period</title>
      <link>https://community.qlik.com/t5/QlikView/QVD-Period/m-p/376337#M140292</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;He,&lt;/P&gt;&lt;P&gt;In these situations it's handy to use the debug mode of qlikview en animate the process. This way you can exactly see what all the values of you variables are at that moment.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you can't solve it that way, you could try the following code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LET rowText = NoOfRows('&lt;SPAN style="color: #636363; font-family: Arial; font-size: 12px; background-color: #eef4f9;"&gt;Temp&lt;/SPAN&gt;');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; let i=1;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;let &lt;SPAN style="color: #636363; font-family: Arial; font-size: 12px; background-color: #eef4f9;"&gt;vMonth &lt;/SPAN&gt;= FieldValue('&lt;SPAN style="color: #636363; font-family: Arial; font-size: 12px; background-color: #eef4f9;"&gt;MonthName&lt;/SPAN&gt;',$(i));&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;do while i &amp;lt;=$(rowText)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; let text = FieldValue('&lt;SPAN style="color: #636363; font-family: Arial; font-size: 12px; background-color: #eef4f9;"&gt;MonthName&lt;/SPAN&gt;',$(i)); &lt;/P&gt;&lt;P style="background-color: #eef4f9; font-size: 12px; color: #636363; font-family: Arial;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MonthWise:&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; LOAD *&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Resident BasesTarjetas&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Where Month(TDCORTE2) = '$(text )';&lt;/P&gt;&lt;P style="background-color: #eef4f9; font-size: 12px; color: #636363; font-family: Arial;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; STORE MonthWise into Month\$(text ).qvd;&lt;/P&gt;&lt;P style="background-color: #eef4f9; font-size: 12px; color: #636363; font-family: Arial;"&gt;&lt;SPAN style="color: #636363; font-family: Arial; font-size: 12px; background-color: #eef4f9;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; DROP Table MonthWise;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background-color: #eef4f9; font-size: 12px; color: #636363; font-family: Arial;"&gt;i=i+1;&lt;/P&gt;&lt;P style="background-color: #eef4f9; font-size: 12px; color: #636363; font-family: Arial;"&gt;loop;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="background-color: #eef4f9; font-size: 12px; color: #636363; font-family: Arial;"&gt;&lt;SPAN style="color: #636363; font-family: Arial; font-size: 12px; background-color: #eef4f9;"&gt;DROP Table Temp;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Aug 2012 17:06:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/QVD-Period/m-p/376337#M140292</guid>
      <dc:creator />
      <dc:date>2012-08-08T17:06:44Z</dc:date>
    </item>
    <item>
      <title>Re: QVD Period</title>
      <link>https://community.qlik.com/t5/QlikView/QVD-Period/m-p/376338#M140293</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for your reply. Im having problems with table Wisemonth. Maybe the table doesn't exist. I left a image.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Aug 2012 17:46:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/QVD-Period/m-p/376338#M140293</guid>
      <dc:creator>pgalvezt</dc:creator>
      <dc:date>2012-08-08T17:46:09Z</dc:date>
    </item>
    <item>
      <title>Re: QVD Period</title>
      <link>https://community.qlik.com/t5/QlikView/QVD-Period/m-p/376339#M140294</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Any Help?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Aug 2012 19:25:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/QVD-Period/m-p/376339#M140294</guid>
      <dc:creator>pgalvezt</dc:creator>
      <dc:date>2012-08-08T19:25:23Z</dc:date>
    </item>
    <item>
      <title>Re: QVD Period</title>
      <link>https://community.qlik.com/t5/QlikView/QVD-Period/m-p/376340#M140295</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Add NoConcatenate statement:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LET&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;STRONG&gt;&lt;EM style=": ; color: #808080; font-size: 8pt;"&gt;rowText&lt;/EM&gt;&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt; = &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;NoOfRows&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;('Temp');&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;STRONG style=": ; color: #0000ff; font-size: 8pt;"&gt;let&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;STRONG&gt;&lt;EM style=": ; color: #808080; font-size: 8pt;"&gt;i&lt;/EM&gt;&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt;=1;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;STRONG style=": ; color: #0000ff; font-size: 8pt;"&gt;let&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;STRONG&gt;&lt;EM style=": ; color: #808080; font-size: 8pt;"&gt;vMonth&lt;/EM&gt;&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt; = &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;FieldValue&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;('MonthName',&lt;/SPAN&gt;&lt;STRONG&gt;&lt;EM style=": ; color: #808080; font-size: 8pt;"&gt;$(i)&lt;/EM&gt;&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt;);&lt;BR /&gt;&lt;/SPAN&gt;&lt;STRONG style=": ; color: #0000ff; font-size: 8pt;"&gt;do&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;while&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;i&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &amp;lt;=&lt;/SPAN&gt;&lt;STRONG&gt;&lt;EM style=": ; color: #808080; font-size: 8pt;"&gt;$(rowText)&lt;/EM&gt;&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;STRONG style=": ; color: #0000ff; font-size: 8pt;"&gt;let&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;STRONG&gt;&lt;EM style=": ; color: #808080; font-size: 8pt;"&gt;text&lt;/EM&gt;&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt; = &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;FieldValue&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;('MonthName',&lt;/SPAN&gt;&lt;STRONG&gt;&lt;EM style=": ; color: #808080; font-size: 8pt;"&gt;$(i)&lt;/EM&gt;&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt;); &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MonthWise:&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;NoConcatenate&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;STRONG style=": ; color: #0000ff; font-size: 8pt;"&gt;LOAD&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt; *&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Resident&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; BasesTarjetas&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Where&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Month&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;TDCORTE2&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;) = '$(text )';&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;STRONG style=": ; color: #0000ff; font-size: 8pt;"&gt;STORE&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt; MonthWise &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;into&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; Month\&lt;/SPAN&gt;&lt;STRONG&gt;&lt;EM style=": ; color: #808080; font-size: 8pt;"&gt;$(text )&lt;/EM&gt;&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt;.qvd;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;STRONG style=": ; color: #0000ff; font-size: 8pt;"&gt;DROP&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Table&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; MonthWise;&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;STRONG&gt;&lt;EM style=": ; color: #808080; font-size: 8pt;"&gt;i&lt;/EM&gt;&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;i&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;+1;&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;STRONG style=": ; color: #0000ff; font-size: 8pt;"&gt;loop&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt;;&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;STRONG style=": ; color: #0000ff; font-size: 8pt;"&gt;DROP&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Table&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; Temp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Aug 2012 19:46:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/QVD-Period/m-p/376340#M140295</guid>
      <dc:creator>bgerchikov</dc:creator>
      <dc:date>2012-08-08T19:46:52Z</dc:date>
    </item>
    <item>
      <title>Re: QVD Period</title>
      <link>https://community.qlik.com/t5/QlikView/QVD-Period/m-p/376341#M140296</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;NoConcatenate seems work but finally QlikView give error (Faild Script).&lt;/P&gt;&lt;P&gt;Any Ideas?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Aug 2012 20:05:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/QVD-Period/m-p/376341#M140296</guid>
      <dc:creator>pgalvezt</dc:creator>
      <dc:date>2012-08-08T20:05:13Z</dc:date>
    </item>
    <item>
      <title>Re: QVD Period</title>
      <link>https://community.qlik.com/t5/QlikView/QVD-Period/m-p/376342#M140297</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maybe Im Trying to replicate a script for full QVD. In this case I have many tables but with the same information. So I have a one big tables called BasesTarjetas. Is for this reason Im using Resident.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Aug 2012 20:43:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/QVD-Period/m-p/376342#M140297</guid>
      <dc:creator>pgalvezt</dc:creator>
      <dc:date>2012-08-08T20:43:03Z</dc:date>
    </item>
    <item>
      <title>Re: QVD Period</title>
      <link>https://community.qlik.com/t5/QlikView/QVD-Period/m-p/376343#M140298</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You might need to check the log file to see the error. It could be security problem as well. Try to cleenup your output directory and run it again.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Aug 2012 21:50:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/QVD-Period/m-p/376343#M140298</guid>
      <dc:creator>bgerchikov</dc:creator>
      <dc:date>2012-08-08T21:50:04Z</dc:date>
    </item>
    <item>
      <title>Re: QVD Period</title>
      <link>https://community.qlik.com/t5/QlikView/QVD-Period/m-p/376344#M140299</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you run this QlikView works for you?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Aug 2012 22:09:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/QVD-Period/m-p/376344#M140299</guid>
      <dc:creator>pgalvezt</dc:creator>
      <dc:date>2012-08-08T22:09:17Z</dc:date>
    </item>
    <item>
      <title>Re: QVD Period</title>
      <link>https://community.qlik.com/t5/QlikView/QVD-Period/m-p/376345#M140300</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you'd upload source, I'll run it. I've done something like that in the past, so...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Aug 2012 22:16:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/QVD-Period/m-p/376345#M140300</guid>
      <dc:creator>bgerchikov</dc:creator>
      <dc:date>2012-08-08T22:16:26Z</dc:date>
    </item>
    <item>
      <title>Re: QVD Period</title>
      <link>https://community.qlik.com/t5/QlikView/QVD-Period/m-p/376346#M140301</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Gives a General Error. I put the log&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Aug 2012 22:17:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/QVD-Period/m-p/376346#M140301</guid>
      <dc:creator>pgalvezt</dc:creator>
      <dc:date>2012-08-08T22:17:59Z</dc:date>
    </item>
    <item>
      <title>Re: QVD Period</title>
      <link>https://community.qlik.com/t5/QlikView/QVD-Period/m-p/376347#M140302</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Look, all my databases contains the same tables so Im using this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Bases:&lt;BR /&gt;OLEDB CONNECT TO...... Client 1(Same Client Diferent Mont (April)&lt;BR /&gt;LOAD *, 'Site1' as Source;&lt;BR /&gt;LOAD &lt;BR /&gt;num(`cod_bloq`)&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; as Cod_Bloqueo,&lt;BR /&gt;if(num(`cod_bloq`) &amp;lt;&amp;gt; 8, 'Vigente','Castigada')&amp;nbsp; as Vigente_Castigo,&lt;BR /&gt;left(cuenta,3)&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; as Clasificacion_Bin,&lt;BR /&gt;Num#(left(cuenta,3))&amp;amp;rut&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; as Homologo_Btcc11,&lt;BR /&gt;MonthName(Date(`td_corte2`,'MMM-YY'))&amp;nbsp;&amp;nbsp; as Periodo,&lt;BR /&gt;num(Month(Date(`td_corte2`,'MMM-YYYY')),'00')&amp;nbsp; as PeriodoNum;&lt;BR /&gt;SQL SELECT *&lt;BR /&gt;FROM btcc11&lt;BR /&gt;Where estado = 1;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OLEDB CONNECT TO...... Client 1(Same Client Diferent Month (may)&lt;BR /&gt;LOAD *, 'Site2' as Source;&lt;BR /&gt;LOAD &lt;BR /&gt;num(`cod_bloq`)&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; as Cod_Bloqueo,&lt;BR /&gt;if(num(`cod_bloq`) &amp;lt;&amp;gt; 8, 'Vigente','Castigada')&amp;nbsp; as Vigente_Castigo,&lt;BR /&gt;left(cuenta,3)&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; as Clasificacion_Bin,&lt;BR /&gt;Num#(left(cuenta,3))&amp;amp;rut&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; as Homologo_Btcc11,&lt;BR /&gt;MonthName(Date(`td_corte2`,'MMM-YY'))&amp;nbsp;&amp;nbsp; as Periodo,&lt;BR /&gt;num(Month(Date(`td_corte2`,'MMM-YYYY')),'00')&amp;nbsp; as PeriodoNum;&lt;BR /&gt;SQL SELECT *&lt;BR /&gt;FROM btcc11&lt;BR /&gt;Where estado = 1;&lt;/P&gt;&lt;P&gt;Store Bases Into $(PathProdQvd)Bases.qvd;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So QlikView at final generate just one big table call Bases.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After that I put:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Temp:&lt;BR /&gt;LOAD&amp;nbsp; Distinct Month(TDCORTE2) AS MonthName&lt;BR /&gt;resident BasesTarjetas;&lt;/P&gt;&lt;P&gt; &lt;BR /&gt;LET vCount=NoOfRows('Temp');&lt;BR /&gt;FOR i=0 to $(vCount)&lt;BR /&gt;LET vMonth = Peek('MonthName',$(i),'Temp');&lt;/P&gt;&lt;P&gt; &lt;BR /&gt; &lt;BR /&gt;MonthWise:&lt;BR /&gt;NoConcatenate&lt;BR /&gt;LOAD *&lt;BR /&gt;Resident BasesTarjetas&lt;BR /&gt;Where Month(TDCORTE2) = '$(vMonth)';&lt;/P&gt;&lt;P&gt;STORE MonthWise into Month\$(vMonth).qvd;&lt;/P&gt;&lt;P&gt;DROP Table MonthWise;&lt;/P&gt;&lt;P&gt;Next&lt;BR /&gt;DROP Table Temp&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Aug 2012 22:33:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/QVD-Period/m-p/376347#M140302</guid>
      <dc:creator>pgalvezt</dc:creator>
      <dc:date>2012-08-08T22:33:46Z</dc:date>
    </item>
    <item>
      <title>Re: QVD Period</title>
      <link>https://community.qlik.com/t5/QlikView/QVD-Period/m-p/376348#M140303</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you need the source I can Choose the smaller client and send you as Excel File.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Aug 2012 22:35:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/QVD-Period/m-p/376348#M140303</guid>
      <dc:creator>pgalvezt</dc:creator>
      <dc:date>2012-08-08T22:35:04Z</dc:date>
    </item>
    <item>
      <title>Re: QVD Period</title>
      <link>https://community.qlik.com/t5/QlikView/QVD-Period/m-p/376349#M140304</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Your log shows &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;STORE MonthWise into Month\abr.qvd&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First, remove "Month\" from the path - most likely it causes the problem. Also, use hardcoded path instead of variable ($vMonth) to test it out.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Instead of "Month\" in the path you can use Directory Month;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Aug 2012 22:44:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/QVD-Period/m-p/376349#M140304</guid>
      <dc:creator>bgerchikov</dc:creator>
      <dc:date>2012-08-08T22:44:36Z</dc:date>
    </item>
    <item>
      <title>Re: QVD Period</title>
      <link>https://community.qlik.com/t5/QlikView/QVD-Period/m-p/376350#M140305</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you now its working. Last question the new qvd they called abr, may,jun. I would like a new format like Tarjetas042012.qvd &lt;/P&gt;&lt;P&gt;Tarjetas052012.qvd&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I do that?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Aug 2012 14:31:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/QVD-Period/m-p/376350#M140305</guid>
      <dc:creator>pgalvezt</dc:creator>
      <dc:date>2012-08-09T14:31:54Z</dc:date>
    </item>
    <item>
      <title>Re: QVD Period</title>
      <link>https://community.qlik.com/t5/QlikView/QVD-Period/m-p/376351#M140306</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I Put:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;STORE Tarjetas into $(PathProdQvd)Tarjetas$(vMonth).qvd;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Result Tarjetasabr.qvd&amp;nbsp; Tarjetasmay.qvd&lt;/P&gt;&lt;P&gt;I need Tarjetas042012&amp;nbsp; Tarjetas052012.qvd&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Aug 2012 14:45:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/QVD-Period/m-p/376351#M140306</guid>
      <dc:creator>pgalvezt</dc:creator>
      <dc:date>2012-08-09T14:45:50Z</dc:date>
    </item>
    <item>
      <title>Re: QVD Period</title>
      <link>https://community.qlik.com/t5/QlikView/QVD-Period/m-p/376352#M140307</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So, you need something like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;&lt;STRONG&gt;let&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;STRONG style="color: #808080; font-size: 8pt;"&gt;&lt;EM&gt;vPath&lt;/EM&gt;&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt; = 'Tarjetas' &amp;amp; &lt;/SPAN&gt;&lt;STRONG style="color: #808080; font-size: 8pt;"&gt;&lt;EM&gt;$(vMonth)&lt;/EM&gt;&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt; &amp;amp; &lt;/SPAN&gt;&lt;STRONG style="color: #808080; font-size: 8pt;"&gt;&lt;EM&gt;$(vYear)&lt;/EM&gt;&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt; &amp;amp; '.qvd';&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;&lt;STRONG&gt;STORE&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; Tarjetas &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;into&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;STRONG style="color: #808080; font-size: 8pt;"&gt;&lt;EM&gt;$(vPath)&lt;/EM&gt;&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt;; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;You have vMonth already, so you need to find out the Year to assign it to vYear variable&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Aug 2012 15:22:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/QVD-Period/m-p/376352#M140307</guid>
      <dc:creator>bgerchikov</dc:creator>
      <dc:date>2012-08-09T15:22:08Z</dc:date>
    </item>
    <item>
      <title>Re: QVD Period</title>
      <link>https://community.qlik.com/t5/QlikView/QVD-Period/m-p/376353#M140308</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I got these cod exactly like you show it. but QlikView must be completely automatically. I don't know if you understand well what exactly what I want but the idea is not put dates into Set sentence. For example if today is end month tomorrow I m going to change 08 by 09 right? I tried this&lt;/P&gt;&lt;P&gt;Temp:&lt;BR /&gt;LOAD&amp;nbsp; Distinct YearName(MonthName(Date(PeriodoNum_Carga,'MMYYYY'))) AS Periodo_Carga&lt;BR /&gt;resident BasesTarjetas;&lt;/P&gt;&lt;P&gt; &lt;BR /&gt;LET vCount=NoOfRows('Temp');&lt;BR /&gt;FOR i=0 to $(vCount)&lt;BR /&gt;LET vCarga = Peek('Periodo_Carga',$(i),'Temp');&lt;/P&gt;&lt;P&gt; &lt;BR /&gt; &lt;BR /&gt;Tarjetas:&lt;BR /&gt;NoConcatenate&lt;BR /&gt;LOAD *&lt;BR /&gt;Resident BasesTarjetas&lt;BR /&gt;Where YearName(MonthName(Date(PeriodoNum_Carga,'MMYYYY'))) = '$(vCarga)';&lt;/P&gt;&lt;P&gt;STORE Tarjetas into $(PathProdQvd)Tarjetas$(vCarga).qvd;&lt;/P&gt;&lt;P&gt;DROP Table Tarjetas;&lt;/P&gt;&lt;P&gt;Next&lt;BR /&gt;DROP Table Temp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; but now appear Tarjetas2012. I just need appear the month (Tarjetas042012)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Aug 2012 15:36:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/QVD-Period/m-p/376353#M140308</guid>
      <dc:creator>pgalvezt</dc:creator>
      <dc:date>2012-08-09T15:36:49Z</dc:date>
    </item>
    <item>
      <title>Re: QVD Period</title>
      <link>https://community.qlik.com/t5/QlikView/QVD-Period/m-p/376354#M140309</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check the value of vCarga variable whether it contains Month ... Maybe you need to add vMonth?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;STORE Tarjetas into $(PathProdQvd)Tarjetas$(vCarga)&lt;STRONG style="color: #808080; font-size: 8pt;"&gt;&lt;EM&gt;$(vMonth)&lt;/EM&gt;&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;.qvd;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Aug 2012 15:48:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/QVD-Period/m-p/376354#M140309</guid>
      <dc:creator>bgerchikov</dc:creator>
      <dc:date>2012-08-09T15:48:13Z</dc:date>
    </item>
  </channel>
</rss>

