<?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 Calendar chart in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Calendar-chart/m-p/239704#M90305</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Has there been any advancements in the creation of calendar charts?&lt;/P&gt;&lt;P&gt;I am attempting to show a calendar, emulating a paper calendar, which shows the day number &lt;EM&gt;and&lt;/EM&gt; sales total within each cell. We are new to Qlikview, and this was discussed during implementation, though no solution was found.&lt;/P&gt;&lt;P&gt;I've see the pseudo-calendars discussed in the forums, with week of month and day used to synthesize the calendar view, but this technique does not fulfill our users' requirements.&lt;/P&gt;&lt;P&gt;Currently, I'm attempting to show date and values with a concatenated expression, but that leads to unintended consequences with totals.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 16 Feb 2010 21:53:47 GMT</pubDate>
    <dc:creator>richardpayne</dc:creator>
    <dc:date>2010-02-16T21:53:47Z</dc:date>
    <item>
      <title>Calendar chart</title>
      <link>https://community.qlik.com/t5/QlikView/Calendar-chart/m-p/239704#M90305</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Has there been any advancements in the creation of calendar charts?&lt;/P&gt;&lt;P&gt;I am attempting to show a calendar, emulating a paper calendar, which shows the day number &lt;EM&gt;and&lt;/EM&gt; sales total within each cell. We are new to Qlikview, and this was discussed during implementation, though no solution was found.&lt;/P&gt;&lt;P&gt;I've see the pseudo-calendars discussed in the forums, with week of month and day used to synthesize the calendar view, but this technique does not fulfill our users' requirements.&lt;/P&gt;&lt;P&gt;Currently, I'm attempting to show date and values with a concatenated expression, but that leads to unintended consequences with totals.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Feb 2010 21:53:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calendar-chart/m-p/239704#M90305</guid>
      <dc:creator>richardpayne</dc:creator>
      <dc:date>2010-02-16T21:53:47Z</dc:date>
    </item>
    <item>
      <title>Calendar chart</title>
      <link>https://community.qlik.com/t5/QlikView/Calendar-chart/m-p/239705#M90306</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm not aware of any calendar improvements that would directly support this sort of thing. So far as I know, the psuedo-calender is about as close as you can get.&lt;/P&gt;&lt;P&gt;I'm not sure what approach you're taking to concatenate dates and values, but if you're trying to, say, sum(Sales) by date, and have a total across all dates, perhaps this would work as your expression:&lt;/P&gt;&lt;P style="padding-left:30px;"&gt;dual(if(only(Date),Date,'Total') &amp;amp; ' ' &amp;amp; sum(Sales), sum(Sales))&lt;/P&gt;&lt;P&gt;Dual() says the result has both a text value and a numeric value. So we'll display text that includes a date or 'Total' plus the sum of the sales. But the underlying numeric value is just the sum of the sales.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Feb 2010 22:36:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calendar-chart/m-p/239705#M90306</guid>
      <dc:creator>johnw</dc:creator>
      <dc:date>2010-02-16T22:36:43Z</dc:date>
    </item>
    <item>
      <title>Calendar chart</title>
      <link>https://community.qlik.com/t5/QlikView/Calendar-chart/m-p/239706#M90307</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for your quick reply.&lt;/P&gt;&lt;P&gt;I am attempting to display a date &lt;EM&gt;and&lt;/EM&gt; the sum of sales within a cell. So my expression looks something like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;=day(Date) &amp;amp; ' ' &amp;amp; num(sum([Sales]),'$#,##0;($#,##0)')&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;This will give me '4 $1000' in a cell where day is MM/04/YYYY and the daily sales total is $1000. If there is one cell within the week that is populated, the weekly partial sum for that row will be '4 $1000'. If there were two cells in that row, '4 $1000' and '5 $500', then the total says '$1500', leaving off the day number.&lt;/P&gt;&lt;P&gt;I've attempted to attach a sample QVD, but the upload feature here is not working for me in either IE or Firefox at the moment.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Feb 2010 15:36:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calendar-chart/m-p/239706#M90307</guid>
      <dc:creator>richardpayne</dc:creator>
      <dc:date>2010-02-17T15:36:01Z</dc:date>
    </item>
    <item>
      <title>Calendar chart</title>
      <link>https://community.qlik.com/t5/QlikView/Calendar-chart/m-p/239707#M90308</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So... are you saying that that expression gives those results? That expression does NOT give those results? Are those the results you want? Did you want some other results? If so what other results? What sort of help are you looking for?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Feb 2010 19:23:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calendar-chart/m-p/239707#M90308</guid>
      <dc:creator>johnw</dc:creator>
      <dc:date>2010-02-17T19:23:15Z</dc:date>
    </item>
    <item>
      <title>Calendar chart</title>
      <link>https://community.qlik.com/t5/QlikView/Calendar-chart/m-p/239708#M90309</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="jive_text_macro jive_macro_quote" jivemacro="quote"&gt;&lt;BR /&gt;richardpayne wrote:&lt;BR /&gt;I've attempted to attach a sample QVD, but the upload feature here is not working for me in either IE or Firefox at the moment. &amp;lt;div&amp;gt;&amp;lt;/div&amp;gt;&lt;BR /&gt;&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;This feature should work now...sorry for the inconvenience!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Feb 2010 19:25:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calendar-chart/m-p/239708#M90309</guid>
      <dc:creator />
      <dc:date>2010-02-17T19:25:59Z</dc:date>
    </item>
    <item>
      <title>Calendar chart</title>
      <link>https://community.qlik.com/t5/QlikView/Calendar-chart/m-p/239709#M90310</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am concatenating the day of the month and the sum of sales for that day in each calendar cell intentionally. Having one or the other would not meet the users' requirements.&lt;/P&gt;&lt;P&gt;I've attached an example of the calendar format I am using. You can see the total for week 1 and week 6 of Jan 2010 showing the day of the month. I would like to change this to show only the sum of the dollar amounts from the week.&lt;/P&gt;&lt;P&gt;I think this example clearly demonstrates what I am attempting to do. Is there a better way of displaying this information in this type of format?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Feb 2010 20:27:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calendar-chart/m-p/239709#M90310</guid>
      <dc:creator>richardpayne</dc:creator>
      <dc:date>2010-02-17T20:27:00Z</dc:date>
    </item>
    <item>
      <title>Calendar chart</title>
      <link>https://community.qlik.com/t5/QlikView/Calendar-chart/m-p/239710#M90311</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;OK, now I think I see what the problem is, and what you want. Here are three different approaches. They all remove the day from the total column, and then just display the results in a few different ways. I think the third one is the most easily read, but it also uses the most space.&lt;/P&gt;&lt;P&gt;(EDIT: You can take the third calendar even further. Add a third expression with a value of space between the day and the amount. Custom format the cell to remove the lines before and after the expression. Now it looks even MORE like a calendar, and makes it even easier to read. However, it also then takes even MORE space, which I find is almost always at a premium.)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Feb 2010 20:59:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calendar-chart/m-p/239710#M90311</guid>
      <dc:creator>johnw</dc:creator>
      <dc:date>2010-02-17T20:59:33Z</dc:date>
    </item>
    <item>
      <title>Calendar chart</title>
      <link>https://community.qlik.com/t5/QlikView/Calendar-chart/m-p/239711#M90312</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I would agree with John the third one is the best.&lt;/P&gt;&lt;P&gt;Good Example John!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Feb 2010 21:05:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calendar-chart/m-p/239711#M90312</guid>
      <dc:creator />
      <dc:date>2010-02-17T21:05:29Z</dc:date>
    </item>
    <item>
      <title>Calendar chart</title>
      <link>https://community.qlik.com/t5/QlikView/Calendar-chart/m-p/239712#M90313</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Extended on the third one. Added a little box of light green that gives you a VERY quick visual recognition of which days had big numbers and which had small numbers. Might or might not be worth the space, but far easier to comprehend at a glance than a large table of numbers. Might be able to do even better in version 9, which I think gives you more options for graphs inside of a cell like this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Feb 2010 21:10:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calendar-chart/m-p/239712#M90313</guid>
      <dc:creator>johnw</dc:creator>
      <dc:date>2010-02-17T21:10:25Z</dc:date>
    </item>
    <item>
      <title>Calendar chart</title>
      <link>https://community.qlik.com/t5/QlikView/Calendar-chart/m-p/239713#M90314</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for all your help and patience. This is right on the money.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Feb 2010 21:47:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calendar-chart/m-p/239713#M90314</guid>
      <dc:creator>richardpayne</dc:creator>
      <dc:date>2010-02-17T21:47:07Z</dc:date>
    </item>
    <item>
      <title>Calendar chart</title>
      <link>https://community.qlik.com/t5/QlikView/Calendar-chart/m-p/239714#M90315</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Glad to help. And in case you go with the little green graphs, I think it would be better to use this as the gauge's maximum than what I posted before:&lt;/P&gt;&lt;P style="padding-left:30px;"&gt;max({1}aggr(sum({1}Sales),MonthYear,MonthWeek))&lt;/P&gt;&lt;P&gt;That way, you can see the trend in the weekly totals, not just in the daily totals. And when you select a particular month, the size of the green boxes won't suddenly change on you. They're still big enough to tell the difference in size on a daily basis, for the most part.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Feb 2010 21:58:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calendar-chart/m-p/239714#M90315</guid>
      <dc:creator>johnw</dc:creator>
      <dc:date>2010-02-17T21:58:36Z</dc:date>
    </item>
    <item>
      <title>Calendar chart</title>
      <link>https://community.qlik.com/t5/QlikView/Calendar-chart/m-p/239715#M90316</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi John,&lt;/P&gt;&lt;P&gt;Please could you post the code for your Week dimension. When I first looked at it I thought it held values 1-53, I now see It only holds values 1-6.&lt;/P&gt;&lt;P&gt;Have you generated this or is it manually entered?&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;Kind Regards,&lt;/P&gt;&lt;P&gt;Neil&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Feb 2010 15:08:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calendar-chart/m-p/239715#M90316</guid>
      <dc:creator />
      <dc:date>2010-02-18T15:08:48Z</dc:date>
    </item>
    <item>
      <title>Calendar chart</title>
      <link>https://community.qlik.com/t5/QlikView/Calendar-chart/m-p/239716#M90317</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm struggling now to add the monthly totals. Is there a way to concatenate the sum of the sales to the MonthYear?&lt;/P&gt;&lt;P&gt;I can get the monthly totals by showing partial sums by week and day, but seeing the the sales over all Wednesdays, for instance, is useless information.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Apr 2010 16:21:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calendar-chart/m-p/239716#M90317</guid>
      <dc:creator>richardpayne</dc:creator>
      <dc:date>2010-04-06T16:21:50Z</dc:date>
    </item>
    <item>
      <title>Calendar chart</title>
      <link>https://community.qlik.com/t5/QlikView/Calendar-chart/m-p/239717#M90318</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi John,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Need you help please.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;have a statistics box in which i am displaying total count of records.&lt;BR /&gt;I need to map this value to a variable using macro to do further&lt;BR /&gt;calculations. I used&lt;/P&gt;&lt;P&gt;Set SB = ActiveDocument.GetSheetObject("SB05")&lt;/P&gt;&lt;P&gt;When i am trying to use getfield to assign the value to a variable it is not accepting.&lt;/P&gt;&lt;P&gt;Please help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Apr 2010 16:39:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calendar-chart/m-p/239717#M90318</guid>
      <dc:creator />
      <dc:date>2010-04-06T16:39:10Z</dc:date>
    </item>
    <item>
      <title>Calendar chart</title>
      <link>https://community.qlik.com/t5/QlikView/Calendar-chart/m-p/239718#M90319</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How about something like this?&lt;/P&gt;&lt;P style="padding-left:30px;"&gt;set MyCount = activedocument.evaluate("count(MyField)")&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Apr 2010 18:15:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calendar-chart/m-p/239718#M90319</guid>
      <dc:creator>johnw</dc:creator>
      <dc:date>2010-04-12T18:15:17Z</dc:date>
    </item>
    <item>
      <title>Calendar chart</title>
      <link>https://community.qlik.com/t5/QlikView/Calendar-chart/m-p/239719#M90320</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="http://community.qlik.com/cfs-file.ashx/__key/CommunityServer.Discussions.Components.Files/11/2548.Numbers.jpg"&gt;&lt;IMG alt="" border="0" src="http://community.qlik.com/resized-image.ashx/__size/550x0/__key/CommunityServer.Discussions.Components.Files/11/2548.Numbers.jpg" /&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Our users want the visibility of the monthly total ($61M here), but the totals by day of the week are useless. Is there a way to retain the "Total" row, but remove all but the last sum?&lt;/P&gt;&lt;P&gt;So far this is the only way I've figured out to include the monthly total here in the chart.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 May 2010 20:09:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calendar-chart/m-p/239719#M90320</guid>
      <dc:creator>richardpayne</dc:creator>
      <dc:date>2010-05-28T20:09:50Z</dc:date>
    </item>
    <item>
      <title>Calendar chart</title>
      <link>https://community.qlik.com/t5/QlikView/Calendar-chart/m-p/239720#M90321</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This seems to work for the posted example. I just checked what the dimensionality() and secondarydimensionality() were for the totals we wanted to exclude, and manually excluded those values in the formula itself.&lt;/P&gt;&lt;P style="padding-left:30px;"&gt;if(secondarydimensionality(),day(Date)) &amp;amp; '&lt;BR /&gt;' &amp;amp; if(sum(Sales)&lt;BR /&gt; and not ( dimensionality()=1&lt;BR /&gt; and secondarydimensionality()=1)&lt;BR /&gt; ,num(sum([Sales]),'$#,##0;($#,##0)'))&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 May 2010 20:31:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calendar-chart/m-p/239720#M90321</guid>
      <dc:creator>johnw</dc:creator>
      <dc:date>2010-05-28T20:31:21Z</dc:date>
    </item>
    <item>
      <title>Calendar chart</title>
      <link>https://community.qlik.com/t5/QlikView/Calendar-chart/m-p/239721#M90322</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks! This pointed me in the right direction.&lt;/P&gt;&lt;P&gt;I'm actually using two expressions for day number and Sales, so I modified my Sales expression to consider dimensionality and column number.&lt;/P&gt;&lt;P&gt;Thanks again!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 May 2010 21:33:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calendar-chart/m-p/239721#M90322</guid>
      <dc:creator>richardpayne</dc:creator>
      <dc:date>2010-05-28T21:33:25Z</dc:date>
    </item>
  </channel>
</rss>

