<?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: Include Missing Data in Table in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Include-Missing-Data-in-Table/m-p/1207588#M387871</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sunny,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I used to use:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sum({&amp;lt;Month=, Date=&amp;gt;} Sales)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But after creating the weekly accumulation in the script, now I use this on the table:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if(GetSelectedCount(Week) = 1,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Only({&amp;lt;Month=, Week=&amp;gt;} Sales_WeekAccum),&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Sum(&lt;SPAN style="font-size: 13.3333px;"&gt;{&amp;lt;Month=, Date=&amp;gt;} Sales)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;)&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 20 Oct 2016 10:01:32 GMT</pubDate>
    <dc:creator>ciaran_mcgowan</dc:creator>
    <dc:date>2016-10-20T10:01:32Z</dc:date>
    <item>
      <title>Include Missing Data in Table</title>
      <link>https://community.qlik.com/t5/QlikView/Include-Missing-Data-in-Table/m-p/1207586#M387869</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have an application where annual sales data is displayed in a simple straight table that ranks sales people. Now, my manager wants to see each of the sales figures for each week if they select it. So the annual data looks like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="1" class="jiveBorder" style="border: 1px solid rgb(0, 0, 0); width: 100%;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;Rank&lt;/TH&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;Employee&lt;/TH&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;Total Sales&lt;/TH&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;1&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;John&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;1,456,895&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;2&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;Paul&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;1,223,564&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;3&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;George&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;987,123&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;4&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;Ringo&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;402,564&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've edited the script to calculate the accumulative total by week and set that to display &lt;EM&gt;&lt;STRONG&gt;if&lt;/STRONG&gt;&lt;/EM&gt; a week/weeks are selected. The only problem is that if an employee doesn't register any sales for a week, they are omitted from the table, and the Rank becomes invalid/incorrect. Is there any way to include them in the table when there is no data? Also, there could be 4/5 week stretches where sales people might not register a sale.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is an example of what I'm seeing now. If I select &lt;STRONG&gt;week 24&lt;/STRONG&gt;, all users have sales data:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="1" class="jiveBorder" style="border: 1px solid rgb(0, 0, 0); width: 100%;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;STRONG&gt;Rank&lt;/STRONG&gt;&lt;/TH&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;STRONG&gt;Employee&lt;/STRONG&gt;&lt;/TH&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;STRONG&gt;Total Sales&lt;/STRONG&gt;&lt;/TH&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;&lt;STRONG&gt;1&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;John&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;600,234&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;2&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;Paul&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;534,276&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;3&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;George&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;307,659&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;4&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;Ringo&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;125,967&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But if I select &lt;STRONG&gt;week 25&lt;/STRONG&gt;, not all users have sales data and the table looks like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="1" class="jiveBorder" style="border: 1px solid rgb(0, 0, 0); width: 100%;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;STRONG&gt;Rank&lt;/STRONG&gt;&lt;/TH&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;STRONG&gt;Employee&lt;/STRONG&gt;&lt;/TH&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;STRONG&gt;Total Sales&lt;/STRONG&gt;&lt;/TH&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;1&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;John&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;642,896&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;2&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;Ringo&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;142,215&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But what I need to see is:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="1" class="jiveBorder" style="border: 1px solid rgb(0, 0, 0); width: 100%;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;STRONG&gt;Rank&lt;/STRONG&gt;&lt;/TH&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;STRONG&gt;Employee&lt;/STRONG&gt;&lt;/TH&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;STRONG&gt;Total Sales&lt;/STRONG&gt;&lt;/TH&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;1&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;John&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;642,896&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;2&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;Paul&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;534,276&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;3&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;George&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;307,659&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;4&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;Ringo&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;142,215&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can this be done?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Oct 2016 09:40:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Include-Missing-Data-in-Table/m-p/1207586#M387869</guid>
      <dc:creator>ciaran_mcgowan</dc:creator>
      <dc:date>2016-10-20T09:40:50Z</dc:date>
    </item>
    <item>
      <title>Re: Include Missing Data in Table</title>
      <link>https://community.qlik.com/t5/QlikView/Include-Missing-Data-in-Table/m-p/1207587#M387870</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What are the expression that you have used here?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Oct 2016 09:42:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Include-Missing-Data-in-Table/m-p/1207587#M387870</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-10-20T09:42:12Z</dc:date>
    </item>
    <item>
      <title>Re: Include Missing Data in Table</title>
      <link>https://community.qlik.com/t5/QlikView/Include-Missing-Data-in-Table/m-p/1207588#M387871</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sunny,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I used to use:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sum({&amp;lt;Month=, Date=&amp;gt;} Sales)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But after creating the weekly accumulation in the script, now I use this on the table:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if(GetSelectedCount(Week) = 1,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Only({&amp;lt;Month=, Week=&amp;gt;} Sales_WeekAccum),&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Sum(&lt;SPAN style="font-size: 13.3333px;"&gt;{&amp;lt;Month=, Date=&amp;gt;} Sales)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;)&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Oct 2016 10:01:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Include-Missing-Data-in-Table/m-p/1207588#M387871</guid>
      <dc:creator>ciaran_mcgowan</dc:creator>
      <dc:date>2016-10-20T10:01:32Z</dc:date>
    </item>
    <item>
      <title>Re: Include Missing Data in Table</title>
      <link>https://community.qlik.com/t5/QlikView/Include-Missing-Data-in-Table/m-p/1207589#M387872</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There is no transaction data for &lt;STRONG&gt;week 25 ?&lt;/STRONG&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Oct 2016 10:03:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Include-Missing-Data-in-Table/m-p/1207589#M387872</guid>
      <dc:creator>prabiradhikary</dc:creator>
      <dc:date>2016-10-20T10:03:02Z</dc:date>
    </item>
    <item>
      <title>Re: Include Missing Data in Table</title>
      <link>https://community.qlik.com/t5/QlikView/Include-Missing-Data-in-Table/m-p/1207590#M387873</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So it seems that your script is missing Sales_WeekAccum for period where Sales i not available. May be fix that in the script or for any work around it might be helpful to have a sample to look at &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, 20 Oct 2016 10:12:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Include-Missing-Data-in-Table/m-p/1207590#M387873</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-10-20T10:12:21Z</dc:date>
    </item>
    <item>
      <title>Re: Include Missing Data in Table</title>
      <link>https://community.qlik.com/t5/QlikView/Include-Missing-Data-in-Table/m-p/1207591#M387874</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sunny,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm unable to share any scripting/data on this one. How would it be possible to fix in the script? Inserting dummy rows if a value is missing?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Oct 2016 10:17:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Include-Missing-Data-in-Table/m-p/1207591#M387874</guid>
      <dc:creator>ciaran_mcgowan</dc:creator>
      <dc:date>2016-10-20T10:17:46Z</dc:date>
    </item>
    <item>
      <title>Re: Include Missing Data in Table</title>
      <link>https://community.qlik.com/t5/QlikView/Include-Missing-Data-in-Table/m-p/1207592#M387875</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Make sure accumulation takes place even when sales is 0 in a particular week. You might have to add all weeks for all your Employees before you perform the accumulation. I would try something like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Table:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD Employee,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Week&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;FROM ....;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Join(Table)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD Distinct Week&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Resident Table;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and then move forward from there....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Oct 2016 10:21:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Include-Missing-Data-in-Table/m-p/1207592#M387875</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-10-20T10:21:03Z</dc:date>
    </item>
    <item>
      <title>Re: Include Missing Data in Table</title>
      <link>https://community.qlik.com/t5/QlikView/Include-Missing-Data-in-Table/m-p/1207593#M387876</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Sunny, I'll give that a go. Each sales week differs in the amount of weeks so I won't be able to hard code it. I'll trying populating the missing weeks on the fly for each year and let you know how I get on.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Oct 2016 10:25:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Include-Missing-Data-in-Table/m-p/1207593#M387876</guid>
      <dc:creator>ciaran_mcgowan</dc:creator>
      <dc:date>2016-10-20T10:25:10Z</dc:date>
    </item>
    <item>
      <title>Re: Include Missing Data in Table</title>
      <link>https://community.qlik.com/t5/QlikView/Include-Missing-Data-in-Table/m-p/1207594#M387877</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, hard-coding won't be a good solution. I made a small mistake above, try this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;Table:&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;LOAD Employee,&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Week&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;FROM ....;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;Join(Table)&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;LOAD Distinct Week &lt;SPAN style="color: #ff0000;"&gt;as New_Week&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;Resident Table;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;We want to create a cross join between Employee and all possible Weeks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Oct 2016 10:29:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Include-Missing-Data-in-Table/m-p/1207594#M387877</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-10-20T10:29:49Z</dc:date>
    </item>
    <item>
      <title>Re: Include Missing Data in Table</title>
      <link>https://community.qlik.com/t5/QlikView/Include-Missing-Data-in-Table/m-p/1207595#M387878</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sunny, I think you are on the right track but this approach isn't feasible here. The above script is only adding each week number to each row.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;45 - 50 weeks per year&lt;/P&gt;&lt;P&gt;100 + Employees&lt;/P&gt;&lt;P&gt;Between 0 &amp;amp; 40 sales per week (each sale is it's own row)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The result is too big and won't work. I'll let you know if I make any progress.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Oct 2016 14:45:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Include-Missing-Data-in-Table/m-p/1207595#M387878</guid>
      <dc:creator>ciaran_mcgowan</dc:creator>
      <dc:date>2016-10-20T14:45:58Z</dc:date>
    </item>
    <item>
      <title>Re: Include Missing Data in Table</title>
      <link>https://community.qlik.com/t5/QlikView/Include-Missing-Data-in-Table/m-p/1207596#M387879</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here try this, just tested it out&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Table:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD * INLINE [&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Employee, Week, Sales&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; A, 24, 100&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; A, 26, 120&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; B, 24, 120&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; B, 25, 130&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;];&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;TempTable:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD Distinct Week&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Resident Table;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Left Join (TempTable)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD Distinct Employee&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Resident Table;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Join (Table)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD *&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Resident TempTable;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;DROP Table TempTable;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/141396_Capture.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Oct 2016 14:54:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Include-Missing-Data-in-Table/m-p/1207596#M387879</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-10-20T14:54:37Z</dc:date>
    </item>
    <item>
      <title>Re: Include Missing Data in Table</title>
      <link>https://community.qlik.com/t5/QlikView/Include-Missing-Data-in-Table/m-p/1207597#M387880</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This still isn't working in my data model but at least I know it's achievable. I'll keep trying and let you know what happens. Without being able to post my app, there's probably not much more you can do.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Oct 2016 16:31:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Include-Missing-Data-in-Table/m-p/1207597#M387880</guid>
      <dc:creator>ciaran_mcgowan</dc:creator>
      <dc:date>2016-10-20T16:31:49Z</dc:date>
    </item>
    <item>
      <title>Re: Include Missing Data in Table</title>
      <link>https://community.qlik.com/t5/QlikView/Include-Missing-Data-in-Table/m-p/1207598#M387881</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes you are right, its just difficult to know how might the data model looks and what tweaks are needed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;All the best&lt;/P&gt;&lt;P&gt;Sunny&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Oct 2016 16:32:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Include-Missing-Data-in-Table/m-p/1207598#M387881</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-10-20T16:32:53Z</dc:date>
    </item>
    <item>
      <title>Re: Include Missing Data in Table</title>
      <link>https://community.qlik.com/t5/QlikView/Include-Missing-Data-in-Table/m-p/1207599#M387882</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No. Each week will contain no data of any kind for some Employees.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Oct 2016 16:34:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Include-Missing-Data-in-Table/m-p/1207599#M387882</guid>
      <dc:creator>ciaran_mcgowan</dc:creator>
      <dc:date>2016-10-20T16:34:50Z</dc:date>
    </item>
  </channel>
</rss>

