<?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: Generate Missing Weeks in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Generate-Missing-Weeks/m-p/110131#M754408</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I would suggest trying the script below:&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Temp_Calendar_Range:&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;LOAD&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Num(Date#(Min(Period), 'YYYYMM'))as MinDate,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Num(Date#(Max(Period), 'YYYYMM')) as MaxDate&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;RESIDENT [Main Data];&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;//--- Assign the start and end dates to variables&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;LET vMinDate = Peek('MinDate', 0, 'Temp_Calendar_Range');&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;LET vMaxDate = Peek('MaxDate', 0, 'Temp_Calendar_Range');&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;DROP TABLE Temp_Calendar_Range; // Cleanup&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Calendar:&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;LOAD DISTINCT&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Date(Temp_Date, 'YYYY/MM') as &lt;EM style="font-size: 13.3333px;"&gt;[Period]&lt;/EM&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;LOAD DISTINCT&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;MonthStart($(vMinDate) + IterNo() - 1) as Temp_Date&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;AUTOGENERATE (1)&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;WHILE $(vMinDate) + IterNo() - 1 &amp;lt;= $(vMaxDate);&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;This should generate the full rage of weeks between your Min and Max weeks.&lt;/P&gt;&lt;P&gt;After that you need to Left Join the Calendar to your Main table.&lt;/P&gt;&lt;P&gt;That will provide you with Null() values in weeks you're missing.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 17 Oct 2018 06:29:49 GMT</pubDate>
    <dc:creator>MindaugasBacius</dc:creator>
    <dc:date>2018-10-17T06:29:49Z</dc:date>
    <item>
      <title>Generate Missing Weeks</title>
      <link>https://community.qlik.com/t5/QlikView/Generate-Missing-Weeks/m-p/110126#M754403</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have the following requirement. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My Data table looks like below&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" width="264"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD class="xl63" height="19" width="88"&gt;ID&lt;/TD&gt;&lt;TD class="xl63" style="border-left: none;" width="88"&gt;Week&lt;/TD&gt;&lt;TD class="xl64" style="border-left: none;" width="88"&gt;Sales&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl66" height="38" rowspan="2" style="border-bottom: .5pt solid silver; border-top: none;" width="88"&gt;4294967379&lt;/TD&gt;&lt;TD class="xl65" style="border-top: none; border-left: none;" width="88"&gt;2018/01&lt;/TD&gt;&lt;TD class="xl65" style="border-top: none; border-left: none;" width="88"&gt;264,31&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl65" height="19" style="border-top: none; border-left: none;" width="88"&gt;2018/06&lt;/TD&gt;&lt;TD class="xl65" style="border-top: none; border-left: none;" width="88"&gt;&lt;P&gt;90,27&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to generate another Table wich looks similar to the one below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" width="264"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD class="xl65" height="19" width="88"&gt;ID&lt;/TD&gt;&lt;TD class="xl65" style="border-left: none;" width="88"&gt;Week&lt;/TD&gt;&lt;TD class="xl66" style="border-left: none;" width="88"&gt;Sales&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl68" height="114" rowspan="6" style="border-bottom: .5pt solid silver; border-top: none;" width="88"&gt;4294967379&lt;/TD&gt;&lt;TD class="xl67" style="border-top: none; border-left: none;" width="88"&gt;2018/01&lt;/TD&gt;&lt;TD class="xl67" style="border-top: none; border-left: none;" width="88"&gt;264,31&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl67" height="19" style="border-top: none; border-left: none;" width="88"&gt;2018/02&lt;/TD&gt;&lt;TD class="xl67" style="border-top: none; border-left: none;" width="88"&gt;0&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl67" height="19" style="border-top: none; border-left: none;" width="88"&gt;2018/03&lt;/TD&gt;&lt;TD class="xl67" style="border-top: none; border-left: none;" width="88"&gt;0&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl67" height="19" style="border-top: none; border-left: none;" width="88"&gt;2018/04&lt;/TD&gt;&lt;TD class="xl67" style="border-top: none; border-left: none;" width="88"&gt;0&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl67" height="19" style="border-top: none; border-left: none;" width="88"&gt;2018/05&lt;/TD&gt;&lt;TD class="xl67" style="border-top: none; border-left: none;" width="88"&gt;0&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl67" height="19" style="border-top: none; border-left: none;" width="88"&gt;2018/06&lt;/TD&gt;&lt;TD class="xl67" style="border-top: none; border-left: none;" width="88"&gt;90,27&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" width="264"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD height="19" width="88"&gt;&lt;/TD&gt;&lt;TD class="xl65" width="88"&gt;2018/42&lt;/TD&gt;&lt;TD class="xl65" style="border-left: none;" width="88"&gt;0&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;So, on upto the current Calender Week.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a Calender Table with all the weeks. My Raw data gives me only the Weeks that have some Sales value present. I need to Insert 0 as sales where there are actually none.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Sai.&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/Generate-Missing-Weeks/m-p/110126#M754403</guid>
      <dc:creator>psk180590</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Generate Missing Weeks</title>
      <link>https://community.qlik.com/t5/QlikView/Generate-Missing-Weeks/m-p/110127#M754404</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is that week Direct field? Or it is calculating from Date field?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Oct 2018 03:28:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Generate-Missing-Weeks/m-p/110127#M754404</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2018-10-17T03:28:18Z</dc:date>
    </item>
    <item>
      <title>Re: Generate Missing Weeks</title>
      <link>https://community.qlik.com/t5/QlikView/Generate-Missing-Weeks/m-p/110128#M754405</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/thread/284190"&gt;How to generate weeks between two dates?&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Oct 2018 04:17:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Generate-Missing-Weeks/m-p/110128#M754405</guid>
      <dc:creator>vardhancse</dc:creator>
      <dc:date>2018-10-17T04:17:01Z</dc:date>
    </item>
    <item>
      <title>Re: Generate Missing Weeks</title>
      <link>https://community.qlik.com/t5/QlikView/Generate-Missing-Weeks/m-p/110129#M754406</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Pakalapati,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First check are you able to convert week into date or date field in your table then calculate master calender as below thread.&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/thread/91283"&gt;Creating master calendar&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Arvind Patil&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Oct 2018 04:39:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Generate-Missing-Weeks/m-p/110129#M754406</guid>
      <dc:creator>arvind_patil</dc:creator>
      <dc:date>2018-10-17T04:39:21Z</dc:date>
    </item>
    <item>
      <title>Re: Generate Missing Weeks</title>
      <link>https://community.qlik.com/t5/QlikView/Generate-Missing-Weeks/m-p/110130#M754407</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It is calculated from a Date field&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Oct 2018 06:17:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Generate-Missing-Weeks/m-p/110130#M754407</guid>
      <dc:creator>psk180590</dc:creator>
      <dc:date>2018-10-17T06:17:11Z</dc:date>
    </item>
    <item>
      <title>Re: Generate Missing Weeks</title>
      <link>https://community.qlik.com/t5/QlikView/Generate-Missing-Weeks/m-p/110131#M754408</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I would suggest trying the script below:&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Temp_Calendar_Range:&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;LOAD&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Num(Date#(Min(Period), 'YYYYMM'))as MinDate,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Num(Date#(Max(Period), 'YYYYMM')) as MaxDate&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;RESIDENT [Main Data];&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;//--- Assign the start and end dates to variables&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;LET vMinDate = Peek('MinDate', 0, 'Temp_Calendar_Range');&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;LET vMaxDate = Peek('MaxDate', 0, 'Temp_Calendar_Range');&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;DROP TABLE Temp_Calendar_Range; // Cleanup&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Calendar:&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;LOAD DISTINCT&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Date(Temp_Date, 'YYYY/MM') as &lt;EM style="font-size: 13.3333px;"&gt;[Period]&lt;/EM&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;LOAD DISTINCT&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;MonthStart($(vMinDate) + IterNo() - 1) as Temp_Date&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;AUTOGENERATE (1)&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;WHILE $(vMinDate) + IterNo() - 1 &amp;lt;= $(vMaxDate);&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;This should generate the full rage of weeks between your Min and Max weeks.&lt;/P&gt;&lt;P&gt;After that you need to Left Join the Calendar to your Main table.&lt;/P&gt;&lt;P&gt;That will provide you with Null() values in weeks you're missing.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Oct 2018 06:29:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Generate-Missing-Weeks/m-p/110131#M754408</guid>
      <dc:creator>MindaugasBacius</dc:creator>
      <dc:date>2018-10-17T06:29:49Z</dc:date>
    </item>
    <item>
      <title>Re: Generate Missing Weeks</title>
      <link>https://community.qlik.com/t5/QlikView/Generate-Missing-Weeks/m-p/110132#M754409</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You need Master calendar for this, You can use simpler way provided by &lt;A href="https://community.qlik.com/qlik-users/23109"&gt;jagan&lt;/A&gt;‌ using &lt;A href="https://community.qlik.com/docs/DOC-3858"&gt;Master Calendar Generation Script&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Oct 2018 08:27:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Generate-Missing-Weeks/m-p/110132#M754409</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2018-10-17T08:27:41Z</dc:date>
    </item>
    <item>
      <title>Re: Generate Missing Weeks</title>
      <link>https://community.qlik.com/t5/QlikView/Generate-Missing-Weeks/m-p/110133#M754410</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anil,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I already have an Master Calender. How do i now generate the sales foe each Week or Date?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Oct 2018 12:13:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Generate-Missing-Weeks/m-p/110133#M754410</guid>
      <dc:creator>psk180590</dc:creator>
      <dc:date>2018-10-17T12:13:39Z</dc:date>
    </item>
    <item>
      <title>Re: Generate Missing Weeks</title>
      <link>https://community.qlik.com/t5/QlikView/Generate-Missing-Weeks/m-p/110134#M754418</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Did you uncheck "suppress zeros" on Presentation Tab?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have a look at the attached sample&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Oct 2018 12:40:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Generate-Missing-Weeks/m-p/110134#M754418</guid>
      <dc:creator>Frank_Hartmann</dc:creator>
      <dc:date>2018-10-17T12:40:44Z</dc:date>
    </item>
    <item>
      <title>Re: Generate Missing Weeks</title>
      <link>https://community.qlik.com/t5/QlikView/Generate-Missing-Weeks/m-p/110135#M754419</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Frank,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your Solution was the closest to my problem. But, when in my case i have to Display all the weeks after selecting a Company ID.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please, see the updated app.&lt;/P&gt;&lt;P&gt;Here when i select a Company ID i would still want the Table to show all the weeks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Oct 2018 11:39:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Generate-Missing-Weeks/m-p/110135#M754419</guid>
      <dc:creator>psk180590</dc:creator>
      <dc:date>2018-10-18T11:39:57Z</dc:date>
    </item>
    <item>
      <title>Re: Generate Missing Weeks</title>
      <link>https://community.qlik.com/t5/QlikView/Generate-Missing-Weeks/m-p/110136#M754420</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maybe like attached!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Oct 2018 12:25:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Generate-Missing-Weeks/m-p/110136#M754420</guid>
      <dc:creator>Frank_Hartmann</dc:creator>
      <dc:date>2018-10-18T12:25:54Z</dc:date>
    </item>
    <item>
      <title>Re: Generate Missing Weeks</title>
      <link>https://community.qlik.com/t5/QlikView/Generate-Missing-Weeks/m-p/110137#M754421</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Perfect.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vielen Dank!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Oct 2018 13:48:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Generate-Missing-Weeks/m-p/110137#M754421</guid>
      <dc:creator>psk180590</dc:creator>
      <dc:date>2018-10-18T13:48:57Z</dc:date>
    </item>
    <item>
      <title>Re: Generate Missing Weeks</title>
      <link>https://community.qlik.com/t5/QlikView/Generate-Missing-Weeks/m-p/110138#M754422</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if your requirement is resolved now please close this thread by marking correct and helpful answers&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/docs/DOC-14806"&gt;Qlik Community Tip: Marking Replies as Correct or Helpful&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Oct 2018 14:23:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Generate-Missing-Weeks/m-p/110138#M754422</guid>
      <dc:creator>Frank_Hartmann</dc:creator>
      <dc:date>2018-10-18T14:23:29Z</dc:date>
    </item>
    <item>
      <title>Re: Generate Missing Weeks</title>
      <link>https://community.qlik.com/t5/QlikView/Generate-Missing-Weeks/m-p/110139#M754423</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Already marked your suggestion as correct &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Oct 2018 14:33:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Generate-Missing-Weeks/m-p/110139#M754423</guid>
      <dc:creator>psk180590</dc:creator>
      <dc:date>2018-10-18T14:33:21Z</dc:date>
    </item>
  </channel>
</rss>

