<?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: Need a Grid type Calendar view which contains and show daily events from a table, is it possible? in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Need-a-Grid-type-Calendar-view-which-contains-and-show-daily/m-p/1987328#M81589</link>
    <description>&lt;P&gt;&lt;SPAN&gt;I also searched a lot for such a type of calendar and all the forums for it. Finally, I found a &lt;A href="https://www.123calendars.com/october-calendar.html" target="_self"&gt;printable October 2022 calendar&lt;/A&gt; that fits perfectly for my projects. This grid calendar is a great way to view daily events from a table. It is easy to see what is happening each day and track the events' progress. This type of calendar is also easy to print out and share with others. I recommend using their template because it is easy to take notes there and set some reminders for future events.&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 29 Sep 2022 23:29:04 GMT</pubDate>
    <dc:creator>issiakaimg</dc:creator>
    <dc:date>2022-09-29T23:29:04Z</dc:date>
    <item>
      <title>Need a Grid type Calendar view which contains and show daily events from a table, is it possible?</title>
      <link>https://community.qlik.com/t5/App-Development/Need-a-Grid-type-Calendar-view-which-contains-and-show-daily/m-p/1817637#M66979</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;We need a &lt;STRONG&gt;Grid type Calendar view&lt;/STRONG&gt; in a Qlik Sense page which need to show &lt;STRONG&gt;day wise events&lt;/STRONG&gt;, just &lt;STRONG&gt;like Calendar view in&amp;nbsp; Outlook&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;Is this view possible in Qlik Sense ?&lt;/P&gt;&lt;P&gt;If yes please let us know how to do the same.&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;Raghu&lt;/P&gt;</description>
      <pubDate>Thu, 24 Jun 2021 14:03:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Need-a-Grid-type-Calendar-view-which-contains-and-show-daily/m-p/1817637#M66979</guid>
      <dc:creator>sarsukanth</dc:creator>
      <dc:date>2021-06-24T14:03:03Z</dc:date>
    </item>
    <item>
      <title>Re: Need a Grid type Calendar view which contains and show daily events from a table, is it possible?</title>
      <link>https://community.qlik.com/t5/App-Development/Need-a-Grid-type-Calendar-view-which-contains-and-show-daily/m-p/1818015#M67021</link>
      <description>&lt;P&gt;without the use of an extension, it is not possible to imitate the calendar in Qlik Sense.&amp;nbsp;&lt;/P&gt;&lt;P&gt;the problem is that you need Week as a dimension bec in a calendar, the dates are ordered by week rows.&amp;nbsp; in QlikView you can hide a column but not in Qlik Sense.&amp;nbsp; try this:&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Calendar:
load Date, week(Date) as Week, WeekDay(Date) as Day, month(Date) as Month, year(Date) as Year;
load Date(today()-iterno()) as Date
While iterno()&amp;lt;90;
load 1 AutoGenerate(1);

data:
load Date, rand()*1000 as Amount
Resident Calendar;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;filter of a specific Month, then create a table chart:&lt;/P&gt;&lt;P&gt;dim is Week&lt;/P&gt;&lt;P&gt;+ 7 expressions starting with Sun:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;if(count({&amp;lt;Day={'Sun'}&amp;gt;}Date)&amp;gt;0, 
Date(only({&amp;lt;Day={'Sun'}&amp;gt;}Date),'DD') &amp;amp; '

' &amp;amp; num(Sum({&amp;lt;Day={'Sun'}&amp;gt;}Amount),'#.##')
,' ')&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;create 6 more for the other days:&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="edwin_0-1624651173721.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/57577i2AACC077ED91AC8F/image-size/medium?v=v2&amp;amp;px=400" role="button" title="edwin_0-1624651173721.png" alt="edwin_0-1624651173721.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;as yo can see, since you cant hide the week column, it ruins the visual&lt;/P&gt;</description>
      <pubDate>Fri, 25 Jun 2021 20:01:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Need-a-Grid-type-Calendar-view-which-contains-and-show-daily/m-p/1818015#M67021</guid>
      <dc:creator>edwin</dc:creator>
      <dc:date>2021-06-25T20:01:01Z</dc:date>
    </item>
    <item>
      <title>Re: Need a Grid type Calendar view which contains and show daily events from a table, is it possible?</title>
      <link>https://community.qlik.com/t5/App-Development/Need-a-Grid-type-Calendar-view-which-contains-and-show-daily/m-p/1951501#M78420</link>
      <description>&lt;P&gt;Hi, Edwin.&lt;/P&gt;
&lt;P&gt;I'm trying to do this "calendar" with similar information but i can't.&lt;BR /&gt;Do you know if this still work?&lt;/P&gt;
&lt;P&gt;If this still works maybe I'm confusing the fields name with the functions name, so if you can help me to distinct where is the function or the field i'll be thankfull.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And finally i don't know the function of the symbols "{&amp;lt;&amp;gt;}".&lt;/P&gt;</description>
      <pubDate>Mon, 04 Jul 2022 19:21:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Need-a-Grid-type-Calendar-view-which-contains-and-show-daily/m-p/1951501#M78420</guid>
      <dc:creator>VictorAE</dc:creator>
      <dc:date>2022-07-04T19:21:06Z</dc:date>
    </item>
    <item>
      <title>Re: Need a Grid type Calendar view which contains and show daily events from a table, is it possible?</title>
      <link>https://community.qlik.com/t5/App-Development/Need-a-Grid-type-Calendar-view-which-contains-and-show-daily/m-p/1954233#M78693</link>
      <description>&lt;P&gt;This calendar does not work if we have more than one "Amount". do you have a solution for it?&lt;/P&gt;</description>
      <pubDate>Mon, 11 Jul 2022 18:58:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Need-a-Grid-type-Calendar-view-which-contains-and-show-daily/m-p/1954233#M78693</guid>
      <dc:creator>felcar2013</dc:creator>
      <dc:date>2022-07-11T18:58:42Z</dc:date>
    </item>
    <item>
      <title>Re: Need a Grid type Calendar view which contains and show daily events from a table, is it possible?</title>
      <link>https://community.qlik.com/t5/App-Development/Need-a-Grid-type-Calendar-view-which-contains-and-show-daily/m-p/1954754#M78738</link>
      <description>&lt;P&gt;the symbols {&amp;lt;&amp;gt;} indicates set analysis.&amp;nbsp; post a picture of your data model and your expression and maybe i or someone will be able to help&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 12 Jul 2022 16:24:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Need-a-Grid-type-Calendar-view-which-contains-and-show-daily/m-p/1954754#M78738</guid>
      <dc:creator>edwin</dc:creator>
      <dc:date>2022-07-12T16:24:43Z</dc:date>
    </item>
    <item>
      <title>Re: Need a Grid type Calendar view which contains and show daily events from a table, is it possible?</title>
      <link>https://community.qlik.com/t5/App-Development/Need-a-Grid-type-Calendar-view-which-contains-and-show-daily/m-p/1954755#M78739</link>
      <description>&lt;P&gt;the cell is a composite of the "DAY" and the measure separated by CR.&amp;nbsp; if you need more than one measure just add it into the expression:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;if(count({&amp;lt;Day={'Sun'}&amp;gt;}Date)&amp;gt;0, 
Date(only({&amp;lt;Day={'Sun'}&amp;gt;}Date),'DD') &amp;amp; '

' &amp;amp; num(Sum({&amp;lt;Day={'Sun'}&amp;gt;}Amount),'#.##') &amp;amp; '
' &amp;amp; yourseconexpressionhere
,' ')&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 12 Jul 2022 16:26:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Need-a-Grid-type-Calendar-view-which-contains-and-show-daily/m-p/1954755#M78739</guid>
      <dc:creator>edwin</dc:creator>
      <dc:date>2022-07-12T16:26:09Z</dc:date>
    </item>
    <item>
      <title>Re: Need a Grid type Calendar view which contains and show daily events from a table, is it possible?</title>
      <link>https://community.qlik.com/t5/App-Development/Need-a-Grid-type-Calendar-view-which-contains-and-show-daily/m-p/1954758#M78740</link>
      <description>&lt;P&gt;Thanks!&lt;/P&gt;
&lt;P&gt;my "amount" were different strings related to the same Event_Date and I solved the expression with this formula:&lt;/P&gt;
&lt;P&gt;IF(COUNT({&amp;lt;Day={'Mon'}&amp;gt;} Event_Date)&amp;gt;0,DATE(ONLY({&amp;lt;Day={'Mon'}&amp;gt;}Event_Date),'DD')&amp;amp;'&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;'&amp;amp;&lt;BR /&gt;CONCAT({&amp;lt;Day={'Mon'}&amp;gt;} Event_Name&amp;amp;'&amp;lt;br&amp;gt;&amp;lt;br &amp;gt;')&lt;BR /&gt;)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 12 Jul 2022 16:31:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Need-a-Grid-type-Calendar-view-which-contains-and-show-daily/m-p/1954758#M78740</guid>
      <dc:creator>felcar2013</dc:creator>
      <dc:date>2022-07-12T16:31:30Z</dc:date>
    </item>
    <item>
      <title>Re: Need a Grid type Calendar view which contains and show daily events from a table, is it possible?</title>
      <link>https://community.qlik.com/t5/App-Development/Need-a-Grid-type-Calendar-view-which-contains-and-show-daily/m-p/1954777#M78741</link>
      <description>&lt;P&gt;yw&lt;/P&gt;</description>
      <pubDate>Tue, 12 Jul 2022 17:04:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Need-a-Grid-type-Calendar-view-which-contains-and-show-daily/m-p/1954777#M78741</guid>
      <dc:creator>edwin</dc:creator>
      <dc:date>2022-07-12T17:04:03Z</dc:date>
    </item>
    <item>
      <title>Re: Need a Grid type Calendar view which contains and show daily events from a table, is it possible?</title>
      <link>https://community.qlik.com/t5/App-Development/Need-a-Grid-type-Calendar-view-which-contains-and-show-daily/m-p/1954853#M78746</link>
      <description>&lt;P&gt;just curious is &amp;lt;br&amp;gt; working for you?&lt;/P&gt;</description>
      <pubDate>Tue, 12 Jul 2022 19:33:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Need-a-Grid-type-Calendar-view-which-contains-and-show-daily/m-p/1954853#M78746</guid>
      <dc:creator>edwin</dc:creator>
      <dc:date>2022-07-12T19:33:23Z</dc:date>
    </item>
    <item>
      <title>Re: Need a Grid type Calendar view which contains and show daily events from a table, is it possible?</title>
      <link>https://community.qlik.com/t5/App-Development/Need-a-Grid-type-Calendar-view-which-contains-and-show-daily/m-p/1954858#M78747</link>
      <description>&lt;P&gt;yes, need to tick box "text is html"&lt;/P&gt;</description>
      <pubDate>Tue, 12 Jul 2022 19:38:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Need-a-Grid-type-Calendar-view-which-contains-and-show-daily/m-p/1954858#M78747</guid>
      <dc:creator>felcar2013</dc:creator>
      <dc:date>2022-07-12T19:38:56Z</dc:date>
    </item>
    <item>
      <title>Re: Need a Grid type Calendar view which contains and show daily events from a table, is it possible?</title>
      <link>https://community.qlik.com/t5/App-Development/Need-a-Grid-type-Calendar-view-which-contains-and-show-daily/m-p/1954880#M78749</link>
      <description>&lt;P&gt;are you using QlikView or Qlik Sense?&lt;/P&gt;</description>
      <pubDate>Tue, 12 Jul 2022 20:16:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Need-a-Grid-type-Calendar-view-which-contains-and-show-daily/m-p/1954880#M78749</guid>
      <dc:creator>edwin</dc:creator>
      <dc:date>2022-07-12T20:16:18Z</dc:date>
    </item>
    <item>
      <title>Re: Need a Grid type Calendar view which contains and show daily events from a table, is it possible?</title>
      <link>https://community.qlik.com/t5/App-Development/Need-a-Grid-type-Calendar-view-which-contains-and-show-daily/m-p/1954898#M78751</link>
      <description>&lt;P&gt;good question, I am using sense. I think for qlikview you could better use chr(10) or chr(13),&amp;nbsp; not sure&lt;/P&gt;</description>
      <pubDate>Tue, 12 Jul 2022 20:55:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Need-a-Grid-type-Calendar-view-which-contains-and-show-daily/m-p/1954898#M78751</guid>
      <dc:creator>felcar2013</dc:creator>
      <dc:date>2022-07-12T20:55:06Z</dc:date>
    </item>
    <item>
      <title>Re: Need a Grid type Calendar view which contains and show daily events from a table, is it possible?</title>
      <link>https://community.qlik.com/t5/App-Development/Need-a-Grid-type-Calendar-view-which-contains-and-show-daily/m-p/1954927#M78753</link>
      <description>&lt;P&gt;heres a great post for set analysis:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://community.qlik.com/t5/Qlik-Education-Documents/Set-Analysis-Presentation-pdf/ta-p/1487937?attachment-id=123801" target="_blank"&gt;https://community.qlik.com/t5/Qlik-Education-Documents/Set-Analysis-Presentation-pdf/ta-p/1487937?attachment-id=123801&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 13 Jul 2022 00:14:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Need-a-Grid-type-Calendar-view-which-contains-and-show-daily/m-p/1954927#M78753</guid>
      <dc:creator>edwin</dc:creator>
      <dc:date>2022-07-13T00:14:06Z</dc:date>
    </item>
    <item>
      <title>Re: Need a Grid type Calendar view which contains and show daily events from a table, is it possible?</title>
      <link>https://community.qlik.com/t5/App-Development/Need-a-Grid-type-Calendar-view-which-contains-and-show-daily/m-p/1985651#M81375</link>
      <description>&lt;P&gt;&lt;SPAN&gt;I also searched a lot for such a type of calendar and all the forums for it. Finally, I found a printable October 2022 calendar that fits perfectly for my projects. &lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 26 Sep 2022 23:44:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Need-a-Grid-type-Calendar-view-which-contains-and-show-daily/m-p/1985651#M81375</guid>
      <dc:creator>issiakaimg</dc:creator>
      <dc:date>2022-09-26T23:44:28Z</dc:date>
    </item>
    <item>
      <title>Re: Need a Grid type Calendar view which contains and show daily events from a table, is it possible?</title>
      <link>https://community.qlik.com/t5/App-Development/Need-a-Grid-type-Calendar-view-which-contains-and-show-daily/m-p/1987328#M81589</link>
      <description>&lt;P&gt;&lt;SPAN&gt;I also searched a lot for such a type of calendar and all the forums for it. Finally, I found a &lt;A href="https://www.123calendars.com/october-calendar.html" target="_self"&gt;printable October 2022 calendar&lt;/A&gt; that fits perfectly for my projects. This grid calendar is a great way to view daily events from a table. It is easy to see what is happening each day and track the events' progress. This type of calendar is also easy to print out and share with others. I recommend using their template because it is easy to take notes there and set some reminders for future events.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 29 Sep 2022 23:29:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Need-a-Grid-type-Calendar-view-which-contains-and-show-daily/m-p/1987328#M81589</guid>
      <dc:creator>issiakaimg</dc:creator>
      <dc:date>2022-09-29T23:29:04Z</dc:date>
    </item>
  </channel>
</rss>

