<?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: Show specific dimension responses in a graph in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Show-specific-dimension-responses-in-a-graph/m-p/380925#M1166298</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think you just need to divide by &lt;EM&gt;sum(total Count):&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=if&lt;SPAN style="font-size: 8pt;"&gt; ( &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[overall experience]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; = 'Dissatisfied' &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;or&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[overall experience]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; = 'Extremely dissatisfied',&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;sum&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;Count&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;)&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,0) &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;/ &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;sum(total Count)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;or if you want to try with a set expression:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;=sum({&amp;lt;[Overall Experience] = {'Extremely dissatisfied','Dissatisfied'}&amp;gt;} Count) /&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;sum(total Count)&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I assumed, that you are only using one dimension, if you are using more than one, you need to add a field list to your total qualifier, e.g.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;....&amp;nbsp; / &lt;/EM&gt;&lt;EM&gt;sum(&lt;STRONG&gt;total&amp;lt;Dimension1FieldName&amp;gt;&lt;/STRONG&gt; Count)&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please check the Help file for more details about the total qualifier.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps,&lt;/P&gt;&lt;P&gt;Stefan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 29 Aug 2012 14:08:50 GMT</pubDate>
    <dc:creator>swuehl</dc:creator>
    <dc:date>2012-08-29T14:08:50Z</dc:date>
    <item>
      <title>Show specific dimension responses in a graph</title>
      <link>https://community.qlik.com/t5/QlikView/Show-specific-dimension-responses-in-a-graph/m-p/380921#M1166294</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have&amp;nbsp; "Overall Experience" question with 5 responses "Extremely Satisfied" ,"Satisfied" ,"Neutral" ,"Dissatisfied"&amp;nbsp; and "Extremely Dissatisfied".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I selected "Overall Experience" as a dimension, but i want to show in the graph only the&amp;nbsp; Dissatisfied and Extremely Dissatisfied&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can i do this?? Can you please help&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 26 Aug 2012 09:07:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Show-specific-dimension-responses-in-a-graph/m-p/380921#M1166294</guid>
      <dc:creator />
      <dc:date>2012-08-26T09:07:21Z</dc:date>
    </item>
    <item>
      <title>Re: Show specific dimension responses in a graph</title>
      <link>https://community.qlik.com/t5/QlikView/Show-specific-dimension-responses-in-a-graph/m-p/380922#M1166295</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can either use a calculated dimension:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;=if([Overall Experience]&amp;nbsp; = 'Dissatisfied' or [Overall Experience] = 'Extremely Dissatisfied', [Overall Experince])&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(and check 'suppress when value is NULL' in dimension tab of chart properties)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or use [Overall Experience] as dimensions (as you now do), and add a so called set expression to your aggregation functions (I assume you do use some aggregation functions like count(Response)):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;=count({&amp;lt;[Overall Experience]= {'Dissatisfied','Extremely Dissatisfied'}&amp;gt;} Response)&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps,&lt;/P&gt;&lt;P&gt;Stefan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 26 Aug 2012 10:35:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Show-specific-dimension-responses-in-a-graph/m-p/380922#M1166295</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2012-08-26T10:35:36Z</dc:date>
    </item>
    <item>
      <title>Re: Show specific dimension responses in a graph</title>
      <link>https://community.qlik.com/t5/QlikView/Show-specific-dimension-responses-in-a-graph/m-p/380923#M1166296</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In case =count({&amp;lt;[Overall Experience]= {'Dissatisfied','Extremely Dissatisfied'}&amp;gt;} Response)&lt;/P&gt;&lt;P&gt;the user selection of [Overall Experience] values will be discarded for counting.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If its not suitable use 'intersaction' of sets:&lt;/P&gt;&lt;P&gt;=count({&lt;STRONG&gt;$*$&lt;/STRONG&gt;&amp;lt;[Overall Experience]= {'Dissatisfied','Extremely Dissatisfied'}&amp;gt;} Response)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Aug 2012 17:40:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Show-specific-dimension-responses-in-a-graph/m-p/380923#M1166296</guid>
      <dc:creator>whiteline</dc:creator>
      <dc:date>2012-08-27T17:40:16Z</dc:date>
    </item>
    <item>
      <title>Re: Show specific dimension responses in a graph</title>
      <link>https://community.qlik.com/t5/QlikView/Show-specific-dimension-responses-in-a-graph/m-p/380924#M1166297</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I tried this and it worked&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if&lt;SPAN style="font-size: 8pt;"&gt; ( &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[overall experience]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; = 'Dissatisfied' &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;or&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[overall experience]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; = 'Extremely dissatisfied',&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;sum&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;Count&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;)&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,0) &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;now it showed me the dissatisfied and Extremely dissatisfied, but now if i want to get it in percentage&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;i have to divide sum(Count) / ( sum ( "Extremely satisfied", "Satisfied","Neutral","dissatisfied","extremely dissatisfied")&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;how can i get&amp;nbsp; sum ( "Extremely satisfied", "Satisfied","Neutral","dissatisfied","extremely dissatisfied")&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Aug 2012 05:07:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Show-specific-dimension-responses-in-a-graph/m-p/380924#M1166297</guid>
      <dc:creator />
      <dc:date>2012-08-28T05:07:00Z</dc:date>
    </item>
    <item>
      <title>Re: Show specific dimension responses in a graph</title>
      <link>https://community.qlik.com/t5/QlikView/Show-specific-dimension-responses-in-a-graph/m-p/380925#M1166298</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think you just need to divide by &lt;EM&gt;sum(total Count):&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=if&lt;SPAN style="font-size: 8pt;"&gt; ( &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[overall experience]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; = 'Dissatisfied' &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;or&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[overall experience]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; = 'Extremely dissatisfied',&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;sum&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;Count&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;)&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,0) &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;/ &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;sum(total Count)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;or if you want to try with a set expression:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;=sum({&amp;lt;[Overall Experience] = {'Extremely dissatisfied','Dissatisfied'}&amp;gt;} Count) /&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;sum(total Count)&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I assumed, that you are only using one dimension, if you are using more than one, you need to add a field list to your total qualifier, e.g.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;....&amp;nbsp; / &lt;/EM&gt;&lt;EM&gt;sum(&lt;STRONG&gt;total&amp;lt;Dimension1FieldName&amp;gt;&lt;/STRONG&gt; Count)&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please check the Help file for more details about the total qualifier.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps,&lt;/P&gt;&lt;P&gt;Stefan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Aug 2012 14:08:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Show-specific-dimension-responses-in-a-graph/m-p/380925#M1166298</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2012-08-29T14:08:50Z</dc:date>
    </item>
  </channel>
</rss>

