<?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: Create a calender in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Create-a-calender/m-p/818690#M288654</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;tht's QlikView default functionality,if u have some data it will show white,if u selected the same object that will be green,if u dont ahve the data that should be gray.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i don not think so it's possible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;May i know why u want show as MARCH 15 white if u don't have data in back end?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 17 Mar 2015 16:44:51 GMT</pubDate>
    <dc:creator>buzzy996</dc:creator>
    <dc:date>2015-03-17T16:44:51Z</dc:date>
    <item>
      <title>Create a calender</title>
      <link>https://community.qlik.com/t5/QlikView/Create-a-calender/m-p/818689#M288653</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 am using QV 11.20 version.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a calendar in the report which is linked to my data read from database.&lt;/P&gt;&lt;P&gt;But if for any specific date is there is no data, so the day is disabled.&lt;/P&gt;&lt;P&gt;e.g: for march if there is no data for 15th March since it was sunday, the day 15 in the report is not having data so it is showing disabled as in image&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="image-1 jive-image" src="https://community.qlik.com/legacyfs/online/80975_pastedImage_1.png" style="max-width: 1200px; max-height: 900px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But still I want to show day 15 as enabled.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can it be done?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Mar 2015 12:35:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-a-calender/m-p/818689#M288653</guid>
      <dc:creator />
      <dc:date>2015-03-17T12:35:43Z</dc:date>
    </item>
    <item>
      <title>Re: Create a calender</title>
      <link>https://community.qlik.com/t5/QlikView/Create-a-calender/m-p/818690#M288654</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;tht's QlikView default functionality,if u have some data it will show white,if u selected the same object that will be green,if u dont ahve the data that should be gray.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i don not think so it's possible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;May i know why u want show as MARCH 15 white if u don't have data in back end?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Mar 2015 16:44:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-a-calender/m-p/818690#M288654</guid>
      <dc:creator>buzzy996</dc:creator>
      <dc:date>2015-03-17T16:44:51Z</dc:date>
    </item>
    <item>
      <title>Re: Create a calender</title>
      <link>https://community.qlik.com/t5/QlikView/Create-a-calender/m-p/818691#M288655</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are you creating a master calendar in your application? If you are then none of the day's should be blank unless you make a selection which then disable the dates which don't have data point. Can you let us know if this is happening when you make a selection or this is happening regardless?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For the master calendar you can use one of the many scripts available on the community. Here is what I usually use:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Temp:&lt;/P&gt;&lt;P&gt;LOAD Min(&lt;STRONG&gt;Date&lt;/STRONG&gt;) as minDate, //Date field from your database&lt;/P&gt;&lt;P&gt;&amp;nbsp; Today() as maxDate&lt;/P&gt;&lt;P&gt;Resident TempData;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LET vMinDate = Num(Peek('minDate', 0, 'Temp'));&lt;/P&gt;&lt;P&gt;LET vMaxDate = Num(Peek('maxDate', 0, 'Temp'));&lt;/P&gt;&lt;P&gt;DROP Table Temp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TempCalendar:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp; $(vMinDate) + IterNo() - 1 as Num,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Date($(vMinDate) + IterNo() - 1) as TempDate&lt;/P&gt;&lt;P&gt;AutoGenerate&lt;/P&gt;&lt;P&gt;&amp;nbsp; 1 While $(vMinDate) + IterNo() -1 &amp;lt;= $(vMaxDate);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MasterCalendar:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; TempDate as &lt;STRONG&gt;Date&lt;/STRONG&gt;, //Call it the same name as the one in your database so that the calendar object links to your database&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Week(TempDate) as Week,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Year(TempDate) as Year,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Month(TempDate) as Month,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Day(TempDate) as Day,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Weekday(TempDate) as WeekDay,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Q' &amp;amp; ceil(month(TempDate) / 3) as Quarter,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Q' &amp;amp; Ceil(Month(TempDate)/3) &amp;amp; '-' &amp;amp; Year(TempDate) as QuarterYear,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MonthName(TempDate) as MonthYear,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Week(TempDate)&amp;amp;'-'&amp;amp;Year(TempDate) as WeekYear&lt;/P&gt;&lt;P&gt;Resident TempCalendar&lt;/P&gt;&lt;P&gt;Order By TempDate ASC;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DROP Table TempCalendar;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LET vMinDate = Null();&lt;/P&gt;&lt;P&gt;LET vMaxDate = Null();&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HTH&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;S&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Mar 2015 17:25:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-a-calender/m-p/818691#M288655</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2015-03-17T17:25:39Z</dc:date>
    </item>
    <item>
      <title>Re: Create a calender</title>
      <link>https://community.qlik.com/t5/QlikView/Create-a-calender/m-p/818692#M288656</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks to both of you for the response.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Shiva,&lt;/P&gt;&lt;P&gt;I have to generate PDF through publisher which is for the week.&lt;/P&gt;&lt;P&gt;So my requirement is to show a label in the report as 'Report for 15th March 2015 to 16th March 2015'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But since 15th is disabled, it shows as 'Report for 16th March 2015 to 16th March 2015'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So either I want 15th as enabled or somehow manage to show from 15th to 16th.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At the same time, when I generate the PDF for the day, it should show the label as '16th to 16th'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sunindia,&lt;/P&gt;&lt;P&gt;ya I have created a master calender whose date is linked to database field and due to which 15th is getting disabled.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Mar 2015 05:48:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-a-calender/m-p/818692#M288656</guid>
      <dc:creator />
      <dc:date>2015-03-18T05:48:26Z</dc:date>
    </item>
    <item>
      <title>Re: Create a calender</title>
      <link>https://community.qlik.com/t5/QlikView/Create-a-calender/m-p/818693#M288657</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Grey does not mean "disabled", it means "not possible with the current selections" and this is standard QV functionality. As there is no data for the 15th in 2015, it is not a possible value while 2015 is selected.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is useful information for the user, why would you want to conceal it from the user?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HTH&lt;/P&gt;&lt;P&gt;Jonathan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Mar 2015 06:17:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-a-calender/m-p/818693#M288657</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2015-03-18T06:17:23Z</dc:date>
    </item>
    <item>
      <title>Re: Create a calender</title>
      <link>https://community.qlik.com/t5/QlikView/Create-a-calender/m-p/818694#M288658</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;It's not possible to show data in chart (if u don't have) but u can manage from ur chart title or pdf name as "&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Report for 15th March 2015 to 16th March 201&lt;/SPAN&gt;".&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Mar 2015 10:28:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-a-calender/m-p/818694#M288658</guid>
      <dc:creator>buzzy996</dc:creator>
      <dc:date>2015-03-18T10:28:01Z</dc:date>
    </item>
  </channel>
</rss>

