<?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 pie chart in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Create-a-pie-chart/m-p/900600#M313356</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes, that's what I was missing.&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 03 Jun 2015 21:15:47 GMT</pubDate>
    <dc:creator />
    <dc:date>2015-06-03T21:15:47Z</dc:date>
    <item>
      <title>Create a pie chart</title>
      <link>https://community.qlik.com/t5/QlikView/Create-a-pie-chart/m-p/900591#M313347</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have never worked with using pie charts before and I can't seem to find a lot of information about them.&amp;nbsp; Can someone point me in the right direction on finding some information????&lt;/P&gt;&lt;P&gt;I want to create a pie chart that uses a field that contains a value for number of days purchased in advanced.&amp;nbsp; The field is called Advance Ticketing.&amp;nbsp; I have another field that contains number of tickets issued; call this Tickets Issued.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want the pie chart to reflect the following:&lt;/P&gt;&lt;P&gt;0 - 6 days &lt;/P&gt;&lt;P&gt;7 - 13 days &lt;/P&gt;&lt;P&gt;14+ days&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So each of these would have a percentage of how many tickets were issued for each category.&lt;/P&gt;&lt;P&gt;What I'm not sure of is how to set the dimension to reflect the three different categories I want to report on?????&lt;/P&gt;&lt;P&gt;Do I use the dimension limits in some way to set these categories up????&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Jun 2015 22:15:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-a-pie-chart/m-p/900591#M313347</guid>
      <dc:creator />
      <dc:date>2015-06-02T22:15:17Z</dc:date>
    </item>
    <item>
      <title>Re: Create a pie chart</title>
      <link>https://community.qlik.com/t5/QlikView/Create-a-pie-chart/m-p/900592#M313348</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Create a calculated dimension:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=if( AdvancedPurchasedField &amp;lt; 7, dual( '0 - 6 days', 6),&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; i&lt;SPAN style="font-size: 13.3333330154419px;"&gt;f( AdvancedPurchasedField &amp;lt; 14, dual( '7 - 13 days', 13), dual('14+ days', 14)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; )&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and as expression:&lt;/P&gt;&lt;P&gt;=sum(TicketsIssuedField)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can also enable relative option on expression tab.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Jun 2015 22:24:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-a-pie-chart/m-p/900592#M313348</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2015-06-02T22:24:31Z</dc:date>
    </item>
    <item>
      <title>Re: Create a pie chart</title>
      <link>https://community.qlik.com/t5/QlikView/Create-a-pie-chart/m-p/900593#M313349</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;another solution could be to precalculate the buckets (depending on your table size this might improve your application performance):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="QlikCommunity_Thread_166648_Pic1.JPG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/88209_QlikCommunity_Thread_166648_Pic1.JPG" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="QlikCommunity_Thread_166648_Pic2.JPG" class="jive-image image-2" src="https://community.qlik.com/legacyfs/online/88210_QlikCommunity_Thread_166648_Pic2.JPG" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_14332883553021420 jive_text_macro" jivemacro_uid="_14332883553021420"&gt;
&lt;P&gt;tabTickets:&lt;/P&gt;
&lt;P&gt;LOAD RecNo() as ID,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Floor(Rand()*21) as [Advance Ticketing],&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Ceil(Rand()*10) as [Tickets Issued]&lt;/P&gt;
&lt;P&gt;AutoGenerate 100;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;tabAdvTickClass: &lt;/P&gt;
&lt;P&gt;LOAD *, AutoNumberHash128(RangeMin, RangeMax) as %ClassID; &lt;/P&gt;
&lt;P&gt;LOAD RangeMin, Alt(Peek(RangeMin)-1, Dual('∞', 100000000000000)) as RangeMax &lt;/P&gt;
&lt;P&gt;Inline [ &lt;/P&gt;
&lt;P&gt;RangeMin&lt;/P&gt;
&lt;P&gt;14 &lt;/P&gt;
&lt;P&gt;7 &lt;/P&gt;
&lt;P&gt;0 &lt;/P&gt;
&lt;P&gt;]; &lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;tabIntMat: &lt;/P&gt;
&lt;P&gt;IntervalMatch ([Advance Ticketing]) &lt;/P&gt;
&lt;P&gt;LOAD RangeMin, RangeMax &lt;/P&gt;
&lt;P&gt;Resident tabAdvTickClass; &lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Left Join (tabTickets) &lt;/P&gt;
&lt;P&gt;LOAD [Advance Ticketing], &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dual(RangeMin&amp;amp;' - '&amp;amp;RangeMax&amp;amp;' days', RangeMin) as [Advance Ticketing Class], &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; AutoNumberHash128(RangeMin, RangeMax) as %ClassID &lt;/P&gt;
&lt;P&gt;Resident tabIntMat; &lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;DROP Tables tabIntMat; &lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Marco&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Jun 2015 23:39:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-a-pie-chart/m-p/900593#M313349</guid>
      <dc:creator>MarcoWedel</dc:creator>
      <dc:date>2015-06-02T23:39:47Z</dc:date>
    </item>
    <item>
      <title>Re: Create a pie chart</title>
      <link>https://community.qlik.com/t5/QlikView/Create-a-pie-chart/m-p/900594#M313350</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;understand the calculated dimension but not sure about the expression. &lt;/P&gt;&lt;P&gt;I would want the percentage of each category to be divided by the total tickets issued.&lt;/P&gt;&lt;P&gt;for example:&lt;/P&gt;&lt;P&gt;let's say the total number of advanced for 0 - 6 has 20 tickets and the total issued altogether is 170 so 0 -6 would show 12%, 7-13 has 50 tickets so it would be 50/170 for 29%, etc.&lt;/P&gt;&lt;P&gt;so the expression would have to be the sum of the category / sum(ticketsissuedfield)&lt;/P&gt;&lt;P&gt;how would that expression look????&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Jun 2015 20:51:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-a-pie-chart/m-p/900594#M313350</guid>
      <dc:creator />
      <dc:date>2015-06-03T20:51:49Z</dc:date>
    </item>
    <item>
      <title>Re: Create a pie chart</title>
      <link>https://community.qlik.com/t5/QlikView/Create-a-pie-chart/m-p/900595#M313351</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;=sum(ticketsissuedfield) / sum(total ticketsissuedfield)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The TOTAL qualifier should do the magic of summing all tickets across dimensions.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Jun 2015 20:55:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-a-pie-chart/m-p/900595#M313351</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2015-06-03T20:55:02Z</dc:date>
    </item>
    <item>
      <title>Re: Create a pie chart</title>
      <link>https://community.qlik.com/t5/QlikView/Create-a-pie-chart/m-p/900596#M313352</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I get a 100% for each category if I do that&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Jun 2015 20:59:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-a-pie-chart/m-p/900596#M313352</guid>
      <dc:creator />
      <dc:date>2015-06-03T20:59:38Z</dc:date>
    </item>
    <item>
      <title>Re: Create a pie chart</title>
      <link>https://community.qlik.com/t5/QlikView/Create-a-pie-chart/m-p/900597#M313353</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Does &lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px; background-color: #f2f2f2;"&gt;=sum(ticketsissuedfield)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px; background-color: #f2f2f2;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;correctly return the ticket number for each bucket?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Jun 2015 21:08:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-a-pie-chart/m-p/900597#M313353</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2015-06-03T21:08:02Z</dc:date>
    </item>
    <item>
      <title>Re: Create a pie chart</title>
      <link>https://community.qlik.com/t5/QlikView/Create-a-pie-chart/m-p/900598#M313354</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if I do sum(ticketissuedfield) i get 20,300%, 26,900%, &amp;amp; 19,300%&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Jun 2015 21:13:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-a-pie-chart/m-p/900598#M313354</guid>
      <dc:creator />
      <dc:date>2015-06-03T21:13:24Z</dc:date>
    </item>
    <item>
      <title>Re: Create a pie chart</title>
      <link>https://community.qlik.com/t5/QlikView/Create-a-pie-chart/m-p/900599#M313355</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;did you try setting the expression to "relative":&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="QlikCommunity_Thread_166648_Pic3.JPG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/88343_QlikCommunity_Thread_166648_Pic3.JPG" style="height: 544px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="QlikCommunity_Thread_166648_Pic1.JPG" class="jive-image image-2" src="https://community.qlik.com/legacyfs/online/88344_QlikCommunity_Thread_166648_Pic1.JPG" style="height: auto; width: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Marco&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Jun 2015 21:13:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-a-pie-chart/m-p/900599#M313355</guid>
      <dc:creator>MarcoWedel</dc:creator>
      <dc:date>2015-06-03T21:13:32Z</dc:date>
    </item>
    <item>
      <title>Re: Create a pie chart</title>
      <link>https://community.qlik.com/t5/QlikView/Create-a-pie-chart/m-p/900600#M313356</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes, that's what I was missing.&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Jun 2015 21:15:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-a-pie-chart/m-p/900600#M313356</guid>
      <dc:creator />
      <dc:date>2015-06-03T21:15:47Z</dc:date>
    </item>
    <item>
      <title>Re: Create a pie chart</title>
      <link>https://community.qlik.com/t5/QlikView/Create-a-pie-chart/m-p/900601#M313357</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;glad it works&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please close your thread if your question is answered.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Marco&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Jun 2015 21:34:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-a-pie-chart/m-p/900601#M313357</guid>
      <dc:creator>MarcoWedel</dc:creator>
      <dc:date>2015-06-03T21:34:32Z</dc:date>
    </item>
  </channel>
</rss>

