<?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: How to create a pie chart based on alpha numeric values ? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-create-a-pie-chart-based-on-alpha-numeric-values/m-p/882082#M997344</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I thought you want to know how many times &lt;/P&gt;&lt;P&gt;1.Very Dissatisfied&lt;/P&gt;&lt;P&gt;2. Dissatisfied etc is coming...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Considering that your field name is [Overall satisfaction of facilities and services] you can get the desired result by&lt;/P&gt;&lt;P&gt;COUNT(&lt;SPAN style="font-size: 13.3333330154419px;"&gt;[Overall satisfaction of facilities and services])/COUNT(TOTAL &lt;SPAN style="font-size: 13.3333330154419px;"&gt;[Overall satisfaction of facilities and services])&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Go to Number tab and select Fixed To 2 Decimal and Tick Show in Percent (%)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;COUNT(FieldName) will give you count of individual values (i.e. how many times &lt;SPAN style="font-size: 13.3333330154419px;"&gt;1.Very Dissatisfied is appearing and so on)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;COUNT(Total FieldName) will give you total values for this fieldname&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 23 Jun 2015 11:30:05 GMT</pubDate>
    <dc:creator>MK_QSL</dc:creator>
    <dc:date>2015-06-23T11:30:05Z</dc:date>
    <item>
      <title>How to create a pie chart based on alpha numeric values ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-a-pie-chart-based-on-alpha-numeric-values/m-p/882073#M997335</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i am sharing the source data column and expected pie chart, any idea how to create it ?&lt;/P&gt;&lt;P&gt;thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Jun 2015 11:01:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-a-pie-chart-based-on-alpha-numeric-values/m-p/882073#M997335</guid>
      <dc:creator />
      <dc:date>2015-06-23T11:01:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a pie chart based on alpha numeric values ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-a-pie-chart-based-on-alpha-numeric-values/m-p/882074#M997336</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dimension&lt;/P&gt;&lt;P&gt;YourFIeldName&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Expression&lt;/P&gt;&lt;P&gt;Count(YourFieldName)/Count(Total YourFieldName)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Jun 2015 11:05:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-a-pie-chart-based-on-alpha-numeric-values/m-p/882074#M997336</guid>
      <dc:creator>MK_QSL</dc:creator>
      <dc:date>2015-06-23T11:05:33Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a pie chart based on alpha numeric values ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-a-pie-chart-based-on-alpha-numeric-values/m-p/882075#M997337</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Devide the data into two coulmns and use as source so that you get Right one.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Jun 2015 11:08:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-a-pie-chart-based-on-alpha-numeric-values/m-p/882075#M997337</guid>
      <dc:creator>hariprasadqv</dc:creator>
      <dc:date>2015-06-23T11:08:11Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a pie chart based on alpha numeric values ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-a-pie-chart-based-on-alpha-numeric-values/m-p/882076#M997338</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use a dual function in your script which will assign satisfaction with a numeric as well as alpha-numeric value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So something like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Pick(Match(Satisfaction, 'Very satisfied', 'Satisfied', 'Neutral', 'Dissatisfied', 'Very dissatisfied'), Dual(Satisfaction, 5), &lt;/STRONG&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;&lt;STRONG&gt;Dual(Satisfaction, 4), &lt;/STRONG&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;&lt;STRONG&gt;Dual(Satisfaction, 3), &lt;/STRONG&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;&lt;STRONG&gt;Dual(Satisfaction, 2), &lt;/STRONG&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;&lt;STRONG&gt;Dual(Satisfaction, 1)) as SatisfactionDual&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Jun 2015 11:09:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-a-pie-chart-based-on-alpha-numeric-values/m-p/882076#M997338</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2015-06-23T11:09:46Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a pie chart based on alpha numeric values ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-a-pie-chart-based-on-alpha-numeric-values/m-p/882077#M997339</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.6999998092651px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;Hi @&lt;A href="https://community.qlik.com/people/MRKachhiaIMP"&gt;MRKachhiaIMP&lt;/A&gt;,&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.6999998092651px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;i think it worked, but i didnt get it exactly, can you please elaborate the expression a little ?&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.6999998092651px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Jun 2015 11:20:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-a-pie-chart-based-on-alpha-numeric-values/m-p/882077#M997339</guid>
      <dc:creator />
      <dc:date>2015-06-23T11:20:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a pie chart based on alpha numeric values ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-a-pie-chart-based-on-alpha-numeric-values/m-p/882078#M997340</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;and how to calculate and display the percentage &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Jun 2015 11:22:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-a-pie-chart-based-on-alpha-numeric-values/m-p/882078#M997340</guid>
      <dc:creator />
      <dc:date>2015-06-23T11:22:26Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a pie chart based on alpha numeric values ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-a-pie-chart-based-on-alpha-numeric-values/m-p/882079#M997341</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use Relative property in Expression.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Jun 2015 11:25:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-a-pie-chart-based-on-alpha-numeric-values/m-p/882079#M997341</guid>
      <dc:creator>hariprasadqv</dc:creator>
      <dc:date>2015-06-23T11:25:31Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a pie chart based on alpha numeric values ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-a-pie-chart-based-on-alpha-numeric-values/m-p/882080#M997342</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;nope, its not working&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Jun 2015 11:28:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-a-pie-chart-based-on-alpha-numeric-values/m-p/882080#M997342</guid>
      <dc:creator />
      <dc:date>2015-06-23T11:28:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a pie chart based on alpha numeric values ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-a-pie-chart-based-on-alpha-numeric-values/m-p/882081#M997343</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Your data consisting of 3 diffrent values. Consider them as dimension values.&lt;/P&gt;&lt;P&gt;Assue Total number of values as 20.&lt;/P&gt;&lt;P&gt;In that 6 as 5.Very satisfied -&amp;gt; (6/20)*100&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;In that 6 as 4.Satisfied -&amp;gt; (6/20)*100&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;In that 8 as 5.Neutral -&amp;gt; (8/20)*100&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Jun 2015 11:29:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-a-pie-chart-based-on-alpha-numeric-values/m-p/882081#M997343</guid>
      <dc:creator>hariprasadqv</dc:creator>
      <dc:date>2015-06-23T11:29:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a pie chart based on alpha numeric values ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-a-pie-chart-based-on-alpha-numeric-values/m-p/882082#M997344</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I thought you want to know how many times &lt;/P&gt;&lt;P&gt;1.Very Dissatisfied&lt;/P&gt;&lt;P&gt;2. Dissatisfied etc is coming...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Considering that your field name is [Overall satisfaction of facilities and services] you can get the desired result by&lt;/P&gt;&lt;P&gt;COUNT(&lt;SPAN style="font-size: 13.3333330154419px;"&gt;[Overall satisfaction of facilities and services])/COUNT(TOTAL &lt;SPAN style="font-size: 13.3333330154419px;"&gt;[Overall satisfaction of facilities and services])&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Go to Number tab and select Fixed To 2 Decimal and Tick Show in Percent (%)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;COUNT(FieldName) will give you count of individual values (i.e. how many times &lt;SPAN style="font-size: 13.3333330154419px;"&gt;1.Very Dissatisfied is appearing and so on)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;COUNT(Total FieldName) will give you total values for this fieldname&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Jun 2015 11:30:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-a-pie-chart-based-on-alpha-numeric-values/m-p/882082#M997344</guid>
      <dc:creator>MK_QSL</dc:creator>
      <dc:date>2015-06-23T11:30:05Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a pie chart based on alpha numeric values ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-a-pie-chart-based-on-alpha-numeric-values/m-p/882083#M997345</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ohh, got it.&lt;/P&gt;&lt;P&gt;i did what you said for the % but still its not working.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Jun 2015 11:35:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-a-pie-chart-based-on-alpha-numeric-values/m-p/882083#M997345</guid>
      <dc:creator />
      <dc:date>2015-06-23T11:35:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a pie chart based on alpha numeric values ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-a-pie-chart-based-on-alpha-numeric-values/m-p/882084#M997346</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Provide sample data please !&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Jun 2015 11:36:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-a-pie-chart-based-on-alpha-numeric-values/m-p/882084#M997346</guid>
      <dc:creator>MK_QSL</dc:creator>
      <dc:date>2015-06-23T11:36:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a pie chart based on alpha numeric values ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-a-pie-chart-based-on-alpha-numeric-values/m-p/882085#M997347</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;PFA&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Jun 2015 11:38:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-a-pie-chart-based-on-alpha-numeric-values/m-p/882085#M997347</guid>
      <dc:creator />
      <dc:date>2015-06-23T11:38:51Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a pie chart based on alpha numeric values ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-a-pie-chart-based-on-alpha-numeric-values/m-p/882086#M997349</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;any idea how to divide that column into two ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Jun 2015 12:35:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-a-pie-chart-based-on-alpha-numeric-values/m-p/882086#M997349</guid>
      <dc:creator />
      <dc:date>2015-06-23T12:35:39Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a pie chart based on alpha numeric values ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-a-pie-chart-based-on-alpha-numeric-values/m-p/882087#M997351</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;CHECK enclosed file...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Jun 2015 12:43:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-a-pie-chart-based-on-alpha-numeric-values/m-p/882087#M997351</guid>
      <dc:creator>MK_QSL</dc:creator>
      <dc:date>2015-06-23T12:43:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a pie chart based on alpha numeric values ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-a-pie-chart-based-on-alpha-numeric-values/m-p/882088#M997353</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Perfect !! &lt;SPAN style="font-size: 13.3333330154419px;"&gt;Thanks a lot Manish.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;so it isnt necessary to separate the column into two columns ? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Jun 2015 12:59:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-a-pie-chart-based-on-alpha-numeric-values/m-p/882088#M997353</guid>
      <dc:creator />
      <dc:date>2015-06-23T12:59:14Z</dc:date>
    </item>
  </channel>
</rss>

