<?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: Master Calendar Not Filling in all Days in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Master-Calendar-Not-Filling-in-all-Days/m-p/1594210#M595930</link>
    <description>&lt;P&gt;The calendar script I have given did not work?&lt;/P&gt;</description>
    <pubDate>Thu, 20 Jun 2019 15:07:54 GMT</pubDate>
    <dc:creator>Uday_Pasupuleti</dc:creator>
    <dc:date>2019-06-20T15:07:54Z</dc:date>
    <item>
      <title>Master Calendar Not Filling in all Days</title>
      <link>https://community.qlik.com/t5/QlikView/Master-Calendar-Not-Filling-in-all-Days/m-p/1593720#M595923</link>
      <description>&lt;P&gt;I haven't had much of a use for a master calendar in the past as I haven't had much for missing dates that we wanted to fill in. I decided to give it a shot and followed exactly what I found in a QlikView Developer booklet I received in training years ago. The problem is, it works, but it doesn't... my missing dates that don't have stats are not showing up. Spent the last day googling and testing things I found in the community to no avail... Could someone help me figure out the element I'm missing? I've attached a scrambled limited version of the report for an example.&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 03:14:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Master-Calendar-Not-Filling-in-all-Days/m-p/1593720#M595923</guid>
      <dc:creator>MalcolmCICWF</dc:creator>
      <dc:date>2024-11-16T03:14:30Z</dc:date>
    </item>
    <item>
      <title>Re: Master Calendar Not Filling in all Days</title>
      <link>https://community.qlik.com/t5/QlikView/Master-Calendar-Not-Filling-in-all-Days/m-p/1593736#M595924</link>
      <description>&lt;P&gt;Try something like the below example&lt;/P&gt;&lt;P&gt;Fact:&lt;BR /&gt;Load * Inline [&lt;BR /&gt;DateTest,Value&lt;BR /&gt;01/01/2019,10&lt;BR /&gt;18/06/2019,20&lt;BR /&gt;];&lt;/P&gt;&lt;P&gt;QuartersMap:&lt;BR /&gt;MAPPING LOAD&lt;BR /&gt;rowno() as Month,&lt;BR /&gt;'Q' &amp;amp; Ceil (rowno()/3) as Quarter&lt;BR /&gt;AUTOGENERATE (12);&lt;BR /&gt;&lt;BR /&gt;Temp:&lt;BR /&gt;Load&lt;BR /&gt;min(DateTest) as minDate,&lt;BR /&gt;max(DateTest) as maxDate&lt;BR /&gt;Resident Fact;&lt;BR /&gt;&lt;BR /&gt;Let varMinDate = Num(Peek('minDate', 0, 'Temp'));&lt;BR /&gt;Let varMaxDate = Num(Peek('maxDate', 0, 'Temp'));&lt;BR /&gt;DROP Table Temp;&lt;BR /&gt;&lt;BR /&gt;TempCalendar:&lt;BR /&gt;LOAD&lt;BR /&gt;$(varMinDate) + Iterno()-1 As Num,&lt;BR /&gt;Date($(varMinDate) + IterNo() - 1) as TempDate&lt;BR /&gt;AutoGenerate 1 While $(varMinDate) + IterNo() -1 &amp;lt;= $(varMaxDate);&lt;BR /&gt;&lt;BR /&gt;MasterCalendar:&lt;BR /&gt;Load&lt;BR /&gt;Date(TempDate) as Date&lt;BR /&gt;Resident TempCalendar&lt;BR /&gt;Order By TempDate ASC;&lt;BR /&gt;Drop Table TempCalendar;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Jun 2019 15:52:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Master-Calendar-Not-Filling-in-all-Days/m-p/1593736#M595924</guid>
      <dc:creator>Uday_Pasupuleti</dc:creator>
      <dc:date>2019-06-19T15:52:48Z</dc:date>
    </item>
    <item>
      <title>Re: Master Calendar Not Filling in all Days</title>
      <link>https://community.qlik.com/t5/QlikView/Master-Calendar-Not-Filling-in-all-Days/m-p/1593815#M595925</link>
      <description>&lt;P&gt;and replace DateTest with my date field? I saw something to this extent somewhere but couldn't make sense behind the inline part of the code, what dates am I using here, leave as is?&lt;/P&gt;&lt;P&gt;Do I need the QuarterMap table?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In the MasterCalendar table do I name the field according to join with my original data? I assume this is where I am creating my Month, Year, Day of week fields?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Jun 2019 19:13:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Master-Calendar-Not-Filling-in-all-Days/m-p/1593815#M595925</guid>
      <dc:creator>MalcolmCICWF</dc:creator>
      <dc:date>2019-06-19T19:13:50Z</dc:date>
    </item>
    <item>
      <title>Re: Master Calendar Not Filling in all Days</title>
      <link>https://community.qlik.com/t5/QlikView/Master-Calendar-Not-Filling-in-all-Days/m-p/1593827#M595926</link>
      <description>&lt;P&gt;Doesn't seem to have worked&lt;/P&gt;</description>
      <pubDate>Wed, 19 Jun 2019 19:55:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Master-Calendar-Not-Filling-in-all-Days/m-p/1593827#M595926</guid>
      <dc:creator>MalcolmCICWF</dc:creator>
      <dc:date>2019-06-19T19:55:44Z</dc:date>
    </item>
    <item>
      <title>Re: Master Calendar Not Filling in all Days</title>
      <link>https://community.qlik.com/t5/QlikView/Master-Calendar-Not-Filling-in-all-Days/m-p/1593986#M595927</link>
      <description>&lt;P&gt;&lt;SPAN&gt;and replace DateTest with my date field?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Yes&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I saw something to this extent somewhere but couldn't make sense behind the inline part of the code, what dates am I using here, leave as is?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;The Inline table is a example here. You need to use your actual table and the table name instead of Fact next to Resident.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Do I need the QuarterMap table?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;It's up to you. If you want you can keep it if not take it out.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;In the MasterCalendar table do I name the field according to join with my original data?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Yes, Use TempDate as Yourdatefield in the actual table to create a join.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I assume this is where I am creating my Month, Year, Day of week fields?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Yes, You can create the rest of the calendar&amp;nbsp;based on the TempDate field.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Eg: &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;'WK'&amp;amp; week(TempDate) as Week,&lt;BR /&gt;week(TempDate) as WeekNo,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Date(TempDate) as Date,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Year(TempDate) As Year,&lt;BR /&gt;Month(TempDate) As Month,&lt;BR /&gt;Num(Month(TempDate)) As MonthNum,&lt;BR /&gt;If(DayNumberOfYear(TempDate) &amp;lt;= DayNumberOfYear(Today()),1,0) as IsInYTD,&lt;BR /&gt;YeartoDate(TempDate)*-1 as CurYTDFlag&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Week(weekstart(TempDate)) &amp;amp; '-' &amp;amp; WeekYear(TempDate) as WeekYear,&lt;BR /&gt;WeekDay(TempDate) as WeekDay&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;etc...&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;BR /&gt;Resident TempCalendar&lt;BR /&gt;Order By TempDate ASC;&lt;BR /&gt;Drop Table TempCalendar;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 20 Jun 2019 08:27:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Master-Calendar-Not-Filling-in-all-Days/m-p/1593986#M595927</guid>
      <dc:creator>Uday_Pasupuleti</dc:creator>
      <dc:date>2019-06-20T08:27:17Z</dc:date>
    </item>
    <item>
      <title>Re: Master Calendar Not Filling in all Days</title>
      <link>https://community.qlik.com/t5/QlikView/Master-Calendar-Not-Filling-in-all-Days/m-p/1594202#M595928</link>
      <description>&lt;P&gt;Alright, so I found a YouTube video where I was able to get the dates to fill in, I can see them in the table, but they wont display in my pivot table. Is there a chart setting or forced join I have to do between the Master Calendar and my data to make all the dates show? I need the days with zeros to actually show in my charts.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.PNG" style="width: 552px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/14099i9C0D45E17FC2E3AF/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.PNG" alt="Capture.PNG" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture1.PNG" style="width: 999px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/14100i8519E77B1E6BAD41/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture1.PNG" alt="Capture1.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 20 Jun 2019 14:59:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Master-Calendar-Not-Filling-in-all-Days/m-p/1594202#M595928</guid>
      <dc:creator>MalcolmCICWF</dc:creator>
      <dc:date>2019-06-20T14:59:38Z</dc:date>
    </item>
    <item>
      <title>Re: Master Calendar Not Filling in all Days</title>
      <link>https://community.qlik.com/t5/QlikView/Master-Calendar-Not-Filling-in-all-Days/m-p/1594209#M595929</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Try this&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Sum( Sales ) + 0 * Sum( {1} Sales )&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;The above one is example. Change the expression as per&amp;nbsp;your fields names.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 20 Jun 2019 15:06:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Master-Calendar-Not-Filling-in-all-Days/m-p/1594209#M595929</guid>
      <dc:creator>Uday_Pasupuleti</dc:creator>
      <dc:date>2019-06-20T15:06:06Z</dc:date>
    </item>
    <item>
      <title>Re: Master Calendar Not Filling in all Days</title>
      <link>https://community.qlik.com/t5/QlikView/Master-Calendar-Not-Filling-in-all-Days/m-p/1594210#M595930</link>
      <description>&lt;P&gt;The calendar script I have given did not work?&lt;/P&gt;</description>
      <pubDate>Thu, 20 Jun 2019 15:07:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Master-Calendar-Not-Filling-in-all-Days/m-p/1594210#M595930</guid>
      <dc:creator>Uday_Pasupuleti</dc:creator>
      <dc:date>2019-06-20T15:07:54Z</dc:date>
    </item>
    <item>
      <title>Re: Master Calendar Not Filling in all Days</title>
      <link>https://community.qlik.com/t5/QlikView/Master-Calendar-Not-Filling-in-all-Days/m-p/1594217#M595931</link>
      <description>&lt;P&gt;For each of my expressions or one? I tried on the sum of the Talk Time and I got zeros for every date.&amp;nbsp; I have expressions that are counts and such, how do I deal with those? Just seems like such an odd round about way to get all date to be represented.&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;FONT size="1" color="#0000ff"&gt;sum&lt;/FONT&gt;&lt;FONT size="1"&gt;(&lt;/FONT&gt;&lt;FONT size="1" color="#0000ff"&gt;if&lt;/FONT&gt;&lt;FONT size="1"&gt;(&lt;/FONT&gt;&lt;FONT size="1" color="#800000"&gt;DISPO&lt;/FONT&gt;&lt;FONT size="1"&gt;&amp;gt;=2000 &lt;/FONT&gt;&lt;FONT size="1" color="#0000ff"&gt;and&lt;/FONT&gt; &lt;FONT size="1" color="#800000"&gt;DISPO&lt;/FONT&gt;&lt;FONT size="1"&gt;&amp;lt;3000,1,0)) &lt;/FONT&gt;&lt;/LI&gt;&lt;LI&gt;&lt;FONT size="1" color="#ff8000"&gt;&lt;U&gt;&lt;STRONG&gt;(&lt;/STRONG&gt;&lt;/U&gt;&lt;/FONT&gt;&lt;FONT size="1" color="#0000ff"&gt;sum&lt;/FONT&gt;&lt;FONT size="1"&gt;(&lt;/FONT&gt;&lt;FONT size="1" color="#0000ff"&gt;if&lt;/FONT&gt;&lt;FONT size="1"&gt;(&lt;/FONT&gt;&lt;FONT size="1" color="#800000"&gt;DISPO&lt;/FONT&gt;&lt;FONT size="1"&gt;&amp;gt;=2000,1,0))-&lt;/FONT&gt;&lt;FONT size="1" color="#0000ff"&gt;sum&lt;/FONT&gt;&lt;FONT size="1"&gt;(&lt;/FONT&gt;&lt;FONT size="1" color="#0000ff"&gt;if&lt;/FONT&gt;&lt;FONT size="1"&gt;(&lt;/FONT&gt;&lt;FONT size="1" color="#800000"&gt;DISPO&lt;/FONT&gt;&lt;FONT size="1"&gt;&amp;gt;=3000,1,0))&lt;/FONT&gt;&lt;STRONG&gt;&lt;U&gt;&lt;FONT size="1" color="#ff8000"&gt;)&lt;/FONT&gt;&lt;/U&gt;&lt;/STRONG&gt;&lt;FONT size="1"&gt;&lt;BR /&gt;/(&lt;/FONT&gt;&lt;FONT size="1" color="#0000ff"&gt;sum&lt;/FONT&gt;&lt;FONT size="1"&gt;(&lt;/FONT&gt;&lt;FONT size="1" color="#0000ff"&gt;if&lt;/FONT&gt;&lt;FONT size="1"&gt;(&lt;/FONT&gt;&lt;FONT size="1" color="#800000"&gt;DISPO&lt;/FONT&gt;&lt;FONT size="1"&gt;&amp;gt;=2000,1,0))-&lt;/FONT&gt;&lt;FONT size="1" color="#0000ff"&gt;sum&lt;/FONT&gt;&lt;FONT size="1"&gt;(&lt;/FONT&gt;&lt;FONT size="1" color="#0000ff"&gt;if&lt;/FONT&gt;&lt;FONT size="1"&gt;(&lt;/FONT&gt;&lt;FONT size="1" color="#800000"&gt;DISPO&lt;/FONT&gt;&lt;FONT size="1"&gt;&amp;gt;=4000,1,0)))&lt;BR /&gt;&lt;/FONT&gt;&lt;/LI&gt;&lt;LI&gt;&lt;FONT size="1"&gt;&lt;FONT size="1" color="#0000ff"&gt;count&lt;/FONT&gt;(&lt;FONT size="1" color="#0000ff"&gt;distinct&lt;/FONT&gt;(&lt;FONT size="1" color="#800000"&gt;ACCT_NBR&lt;/FONT&gt;)) &lt;/FONT&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 20 Jun 2019 15:16:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Master-Calendar-Not-Filling-in-all-Days/m-p/1594217#M595931</guid>
      <dc:creator>MalcolmCICWF</dc:creator>
      <dc:date>2019-06-20T15:16:08Z</dc:date>
    </item>
    <item>
      <title>Re: Master Calendar Not Filling in all Days</title>
      <link>https://community.qlik.com/t5/QlikView/Master-Calendar-Not-Filling-in-all-Days/m-p/1594223#M595932</link>
      <description>&lt;P&gt;Something like&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;FONT size="1" color="#0000ff"&gt;sum&lt;/FONT&gt;&lt;FONT size="1"&gt;(&lt;/FONT&gt;&lt;FONT size="1" color="#0000ff"&gt;if&lt;/FONT&gt;&lt;FONT size="1"&gt;(&lt;/FONT&gt;&lt;FONT size="1" color="#800000"&gt;DISPO&lt;/FONT&gt;&lt;FONT size="1"&gt;&amp;gt;=2000&amp;nbsp;&lt;/FONT&gt;&lt;FONT size="1" color="#0000ff"&gt;and&lt;/FONT&gt;&amp;nbsp;&lt;FONT size="1" color="#800000"&gt;DISPO&lt;/FONT&gt;&lt;FONT size="1"&gt;&amp;lt;3000,1,0)) +0 *&amp;nbsp;&amp;nbsp;&lt;FONT size="1" color="#0000ff"&gt;sum&lt;/FONT&gt;({1}&lt;FONT size="1" color="#0000ff"&gt;if&lt;/FONT&gt;(&lt;FONT size="1" color="#800000"&gt;DISPO&lt;/FONT&gt;&amp;gt;=2000&amp;nbsp;&lt;FONT size="1" color="#0000ff"&gt;and&lt;/FONT&gt;&amp;nbsp;&lt;FONT size="1" color="#800000"&gt;DISPO&lt;/FONT&gt;&amp;lt;3000,1,0))&lt;/FONT&gt;&lt;/LI&gt;&lt;LI&gt;&lt;FONT size="1"&gt;&lt;FONT size="1" color="#ff8000"&gt;&lt;U&gt;&lt;STRONG&gt;(&lt;/STRONG&gt;&lt;/U&gt;&lt;/FONT&gt;&lt;FONT size="1" color="#0000ff"&gt;sum&lt;/FONT&gt;(&lt;FONT size="1" color="#0000ff"&gt;if&lt;/FONT&gt;(&lt;FONT size="1" color="#800000"&gt;DISPO&lt;/FONT&gt;&amp;gt;=2000,1,0))-&lt;FONT size="1" color="#0000ff"&gt;sum&lt;/FONT&gt;(&lt;FONT size="1" color="#0000ff"&gt;if&lt;/FONT&gt;(&lt;FONT size="1" color="#800000"&gt;DISPO&lt;/FONT&gt;&amp;gt;=3000,1,0))&lt;STRONG&gt;&lt;U&gt;&lt;FONT size="1" color="#ff8000"&gt;)&lt;/FONT&gt;&lt;/U&gt;&lt;/STRONG&gt;&lt;BR /&gt;/(&lt;FONT size="1" color="#0000ff"&gt;sum&lt;/FONT&gt;(&lt;FONT size="1" color="#0000ff"&gt;if&lt;/FONT&gt;(&lt;FONT size="1" color="#800000"&gt;DISPO&lt;/FONT&gt;&amp;gt;=2000,1,0))-&lt;FONT size="1" color="#0000ff"&gt;sum&lt;/FONT&gt;(&lt;FONT size="1" color="#0000ff"&gt;if&lt;/FONT&gt;(&lt;FONT size="1" color="#800000"&gt;DISPO&lt;/FONT&gt;&amp;gt;=4000,1,0))) +0*&lt;/FONT&gt;&lt;FONT size="1"&gt;&lt;FONT size="1" color="#ff8000"&gt;&lt;U&gt;&lt;STRONG&gt;(&lt;/STRONG&gt;&lt;/U&gt;&lt;/FONT&gt;&lt;FONT size="1" color="#0000ff"&gt;sum&lt;/FONT&gt;({1}&lt;FONT size="1" color="#0000ff"&gt;if&lt;/FONT&gt;(&lt;FONT size="1" color="#800000"&gt;DISPO&lt;/FONT&gt;&amp;gt;=2000,1,0))-&lt;FONT size="1" color="#0000ff"&gt;sum&lt;/FONT&gt;({1}&lt;FONT size="1" color="#0000ff"&gt;if&lt;/FONT&gt;(&lt;FONT size="1" color="#800000"&gt;DISPO&lt;/FONT&gt;&amp;gt;=3000,1,0))&lt;STRONG&gt;&lt;U&gt;&lt;FONT size="1" color="#ff8000"&gt;)&lt;/FONT&gt;&lt;/U&gt;&lt;/STRONG&gt;&lt;BR /&gt;/(&lt;FONT size="1" color="#0000ff"&gt;sum&lt;/FONT&gt;({1}&lt;FONT size="1" color="#0000ff"&gt;if&lt;/FONT&gt;(&lt;FONT size="1" color="#800000"&gt;DISPO&lt;/FONT&gt;&amp;gt;=2000,1,0))-&lt;FONT size="1" color="#0000ff"&gt;sum&lt;/FONT&gt;({1}&lt;FONT size="1" color="#0000ff"&gt;if&lt;/FONT&gt;(&lt;FONT size="1" color="#800000"&gt;DISPO&lt;/FONT&gt;&amp;gt;=4000,1,0)))&lt;/FONT&gt;&lt;/LI&gt;&lt;LI&gt;&lt;FONT size="1"&gt;&lt;FONT size="1" color="#0000ff"&gt;count&lt;/FONT&gt;(&lt;FONT size="1" color="#0000ff"&gt;distinct&lt;/FONT&gt;(&lt;FONT size="1" color="#800000"&gt;ACCT_NBR&lt;/FONT&gt;))+0*&lt;FONT color="#0000ff"&gt;count({1} distinct(ACCT_NBR))&lt;/FONT&gt;&lt;/FONT&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 20 Jun 2019 15:22:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Master-Calendar-Not-Filling-in-all-Days/m-p/1594223#M595932</guid>
      <dc:creator>Uday_Pasupuleti</dc:creator>
      <dc:date>2019-06-20T15:22:45Z</dc:date>
    </item>
    <item>
      <title>Re: Master Calendar Not Filling in all Days</title>
      <link>https://community.qlik.com/t5/QlikView/Master-Calendar-Not-Filling-in-all-Days/m-p/1594254#M595933</link>
      <description>&lt;P&gt;tried in one of the expressions, table just turns to this...&lt;/P&gt;&lt;P&gt;I'm seeing why people choose to not use these Master Calendars as much, never had so many issues with something that seems like it should be working&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture2.PNG" style="width: 999px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/14116i62702B707D65A561/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture2.PNG" alt="Capture2.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 20 Jun 2019 15:54:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Master-Calendar-Not-Filling-in-all-Days/m-p/1594254#M595933</guid>
      <dc:creator>MalcolmCICWF</dc:creator>
      <dc:date>2019-06-20T15:54:16Z</dc:date>
    </item>
    <item>
      <title>Re: Master Calendar Not Filling in all Days</title>
      <link>https://community.qlik.com/t5/QlikView/Master-Calendar-Not-Filling-in-all-Days/m-p/1594259#M595934</link>
      <description>&lt;P&gt;Try the last count expression on a straight table with one dimension and see whether it works or not.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It has nothing to do with master calendar. It's because there is no data.&amp;nbsp;&lt;/P&gt;&lt;P&gt;So we are trying to create missing dates and data.&lt;/P&gt;</description>
      <pubDate>Thu, 20 Jun 2019 15:57:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Master-Calendar-Not-Filling-in-all-Days/m-p/1594259#M595934</guid>
      <dc:creator>Uday_Pasupuleti</dc:creator>
      <dc:date>2019-06-20T15:57:55Z</dc:date>
    </item>
    <item>
      <title>Re: Master Calendar Not Filling in all Days</title>
      <link>https://community.qlik.com/t5/QlikView/Master-Calendar-Not-Filling-in-all-Days/m-p/1594284#M595935</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.PNG" style="width: 932px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/14121i1BD39285BCCB0F8A/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.PNG" alt="Capture.PNG" /&gt;&lt;/span&gt;No data correct, but the point from what I've seen&amp;nbsp;for all of these Master Calendar articles is to fill in dates that are missing so they appear in charts and tables build in QlikView. They can show as zeros, but at least you see these dates charted&lt;/P&gt;</description>
      <pubDate>Thu, 20 Jun 2019 17:56:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Master-Calendar-Not-Filling-in-all-Days/m-p/1594284#M595935</guid>
      <dc:creator>MalcolmCICWF</dc:creator>
      <dc:date>2019-06-20T17:56:51Z</dc:date>
    </item>
    <item>
      <title>Re: Master Calendar Not Filling in all Days</title>
      <link>https://community.qlik.com/t5/QlikView/Master-Calendar-Not-Filling-in-all-Days/m-p/1594299#M595936</link>
      <description>&lt;P&gt;Uncheck "Suppress Zero-Values" in the Presentation pane of the object.&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;</description>
      <pubDate>Thu, 20 Jun 2019 18:28:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Master-Calendar-Not-Filling-in-all-Days/m-p/1594299#M595936</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2019-06-20T18:28:56Z</dc:date>
    </item>
    <item>
      <title>Re: Master Calendar Not Filling in all Days</title>
      <link>https://community.qlik.com/t5/QlikView/Master-Calendar-Not-Filling-in-all-Days/m-p/1594649#M595937</link>
      <description>&lt;P&gt;I checked those, they are already unchecked.&lt;/P&gt;</description>
      <pubDate>Fri, 21 Jun 2019 13:59:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Master-Calendar-Not-Filling-in-all-Days/m-p/1594649#M595937</guid>
      <dc:creator>MalcolmCICWF</dc:creator>
      <dc:date>2019-06-21T13:59:44Z</dc:date>
    </item>
    <item>
      <title>Re: Master Calendar Not Filling in all Days</title>
      <link>https://community.qlik.com/t5/QlikView/Master-Calendar-Not-Filling-in-all-Days/m-p/1603950#M595938</link>
      <description>&lt;P&gt;Well, I know you found the YouTube video, but I wanted to give you the Design Blog post on the Master Calendar as well, as I thought it might be of some further help potentially,&amp;nbsp; There are also lots of other posts, so feel free to backup a level on the URL and then search again for what you think you may need, there may be another post that will get you the missing piece there.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.qlik.com/t5/Qlik-Design-Blog/The-Master-Calendar/ba-p/1471527" target="_blank"&gt;https://community.qlik.com/t5/Qlik-Design-Blog/The-Master-Calendar/ba-p/1471527&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Regards,&lt;BR /&gt;Brett&lt;/P&gt;</description>
      <pubDate>Thu, 18 Jul 2019 21:50:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Master-Calendar-Not-Filling-in-all-Days/m-p/1603950#M595938</guid>
      <dc:creator>Brett_Bleess</dc:creator>
      <dc:date>2019-07-18T21:50:51Z</dc:date>
    </item>
  </channel>
</rss>

