<?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 do i display all? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-do-i-display-all/m-p/470531#M175756</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;thanks for the prompt reply&lt;/P&gt;&lt;P&gt;Yes i am using pivot table, due to the constraint and complexity of the data. I have to use on the dimension tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However the above code mention, i would want the 'others' to include 'london' data.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 19 Apr 2013 09:18:27 GMT</pubDate>
    <dc:creator>n1ef5ng1</dc:creator>
    <dc:date>2013-04-19T09:18:27Z</dc:date>
    <item>
      <title>How do i display all?</title>
      <link>https://community.qlik.com/t5/QlikView/How-do-i-display-all/m-p/470525#M175750</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;Example, I have a field name call City which comprises all the cities all over the world&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Firstly, I put this statement on the dimension tab&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;if(city = 'london','london','Others')&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will tabulate two column, London and Others(All cities exclude London)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, here is the twist,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My desired output is two columns with London and Others(All including London)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How do I derived this, kinda urgent. Thank you &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Apr 2013 09:04:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-do-i-display-all/m-p/470525#M175750</guid>
      <dc:creator>n1ef5ng1</dc:creator>
      <dc:date>2013-04-19T09:04:32Z</dc:date>
    </item>
    <item>
      <title>Re: How do i display all?</title>
      <link>https://community.qlik.com/t5/QlikView/How-do-i-display-all/m-p/470526#M175751</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;the first idea I have is:&lt;/P&gt;&lt;P&gt;add another field in the script equal to city, and call it city1 (for example)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then load again and use the second field as another dimesion ... use the condition &lt;/P&gt;&lt;P&gt;if(city = 'london','london',null()) only on the first selection and exclude null values ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hopemit helps&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Apr 2013 09:11:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-do-i-display-all/m-p/470526#M175751</guid>
      <dc:creator>alexandros17</dc:creator>
      <dc:date>2013-04-19T09:11:38Z</dc:date>
    </item>
    <item>
      <title>Re: How do i display all?</title>
      <link>https://community.qlik.com/t5/QlikView/How-do-i-display-all/m-p/470527#M175752</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;&lt;SPAN style="color: #737373; font-family: Arial; background-color: #ffffff;"&gt;if(city = 'london',city,'Others')&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #737373; font-family: Arial; background-color: #ffffff;"&gt;this condition gives 2 values for city london and others&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #737373; font-family: Arial; background-color: #ffffff;"&gt;if u need these as columns then use pivote table and drag and drop city field on the top of tab.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Apr 2013 09:13:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-do-i-display-all/m-p/470527#M175752</guid>
      <dc:creator />
      <dc:date>2013-04-19T09:13:59Z</dc:date>
    </item>
    <item>
      <title>Re: How do i display all?</title>
      <link>https://community.qlik.com/t5/QlikView/How-do-i-display-all/m-p/470528#M175753</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;don't exclude null values, I was wrong ....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the second solutopm, from arya brahma is really good but you have to use a pivot not a straight table&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Apr 2013 09:15:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-do-i-display-all/m-p/470528#M175753</guid>
      <dc:creator>alexandros17</dc:creator>
      <dc:date>2013-04-19T09:15:37Z</dc:date>
    </item>
    <item>
      <title>Re: How do i display all?</title>
      <link>https://community.qlik.com/t5/QlikView/How-do-i-display-all/m-p/470529#M175754</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;thanks for the prompt reply&lt;/P&gt;&lt;P&gt;Yes i am using pivot table, due to the constraint and complexity of the data. I have to use on the dimension tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However the above code mention, i would want the 'others' to include 'london' data.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Apr 2013 09:18:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-do-i-display-all/m-p/470529#M175754</guid>
      <dc:creator>n1ef5ng1</dc:creator>
      <dc:date>2013-04-19T09:18:14Z</dc:date>
    </item>
    <item>
      <title>Re: How do i display all?</title>
      <link>https://community.qlik.com/t5/QlikView/How-do-i-display-all/m-p/470530#M175755</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;thanks for the prompt reply&lt;/P&gt;&lt;P&gt;Yes i am using pivot table, due to the constraint and complexity of the data. I have to use on the dimension tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However the above code mention, i would want the 'others' to include 'london' data.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Apr 2013 09:18:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-do-i-display-all/m-p/470530#M175755</guid>
      <dc:creator>n1ef5ng1</dc:creator>
      <dc:date>2013-04-19T09:18:23Z</dc:date>
    </item>
    <item>
      <title>Re: How do i display all?</title>
      <link>https://community.qlik.com/t5/QlikView/How-do-i-display-all/m-p/470531#M175756</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;thanks for the prompt reply&lt;/P&gt;&lt;P&gt;Yes i am using pivot table, due to the constraint and complexity of the data. I have to use on the dimension tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However the above code mention, i would want the 'others' to include 'london' data.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Apr 2013 09:18:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-do-i-display-all/m-p/470531#M175756</guid>
      <dc:creator>n1ef5ng1</dc:creator>
      <dc:date>2013-04-19T09:18:27Z</dc:date>
    </item>
    <item>
      <title>Re: How do i display all?</title>
      <link>https://community.qlik.com/t5/QlikView/How-do-i-display-all/m-p/470532#M175757</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;thanks for the prompt reply&lt;/P&gt;&lt;P&gt;Yes i am using pivot table, due to the constraint and complexity of the data. I have to use on the dimension tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However the above code mention, i would want the 'others' to include 'london' data.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Apr 2013 09:18:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-do-i-display-all/m-p/470532#M175757</guid>
      <dc:creator>n1ef5ng1</dc:creator>
      <dc:date>2013-04-19T09:18:37Z</dc:date>
    </item>
    <item>
      <title>Re: How do i display all?</title>
      <link>https://community.qlik.com/t5/QlikView/How-do-i-display-all/m-p/470533#M175758</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;thanks for the prompt reply&lt;/P&gt;&lt;P&gt;Yes i am using pivot table, due to the constraint and complexity of the data. I have to use on the dimension tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However the above code mention, i would want the 'others' to include 'london' data.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Apr 2013 09:18:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-do-i-display-all/m-p/470533#M175758</guid>
      <dc:creator>n1ef5ng1</dc:creator>
      <dc:date>2013-04-19T09:18:49Z</dc:date>
    </item>
    <item>
      <title>Re: How do i display all?</title>
      <link>https://community.qlik.com/t5/QlikView/How-do-i-display-all/m-p/470534#M175759</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;*edit am using Pivot table&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Apr 2013 09:20:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-do-i-display-all/m-p/470534#M175759</guid>
      <dc:creator>n1ef5ng1</dc:creator>
      <dc:date>2013-04-19T09:20:03Z</dc:date>
    </item>
    <item>
      <title>Re: How do i display all?</title>
      <link>https://community.qlik.com/t5/QlikView/How-do-i-display-all/m-p/470535#M175760</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try to use my solution, it works and it is easy to use ...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Apr 2013 09:24:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-do-i-display-all/m-p/470535#M175760</guid>
      <dc:creator>alexandros17</dc:creator>
      <dc:date>2013-04-19T09:24:46Z</dc:date>
    </item>
    <item>
      <title>Re: How do i display all?</title>
      <link>https://community.qlik.com/t5/QlikView/How-do-i-display-all/m-p/470536#M175761</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;(i have never added anything from the script before)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;till date, i did all my stuff through dimension and expression&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can you teach step by step, appreciate alot&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Apr 2013 09:26:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-do-i-display-all/m-p/470536#M175761</guid>
      <dc:creator>n1ef5ng1</dc:creator>
      <dc:date>2013-04-19T09:26:51Z</dc:date>
    </item>
    <item>
      <title>Re: How do i display all?</title>
      <link>https://community.qlik.com/t5/QlikView/How-do-i-display-all/m-p/470537#M175762</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you can do this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if(city = 'london',City) // this will be london only&lt;/P&gt;&lt;P&gt;if(city = '*', 'All') // this will be all cities&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Apr 2013 09:34:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-do-i-display-all/m-p/470537#M175762</guid>
      <dc:creator>calvindk</dc:creator>
      <dc:date>2013-04-19T09:34:58Z</dc:date>
    </item>
    <item>
      <title>Re: How do i display all?</title>
      <link>https://community.qlik.com/t5/QlikView/How-do-i-display-all/m-p/470538#M175763</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You have loaded a field named city, you find it in a load or select script statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Copy the row and modify it as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load (or SELECT)&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;,,,&lt;/P&gt;&lt;P&gt;city,&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;From (or Resident)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ....&lt;/P&gt;&lt;P&gt;Where&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the transform to &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load (or SELECT)&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;,,,&lt;/P&gt;&lt;P&gt;city,&lt;/P&gt;&lt;P&gt;city as new City,&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;From (or Resident)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ....&lt;/P&gt;&lt;P&gt;Where&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this double city informations and you can use it as another column&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Apr 2013 09:35:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-do-i-display-all/m-p/470538#M175763</guid>
      <dc:creator>alexandros17</dc:creator>
      <dc:date>2013-04-19T09:35:43Z</dc:date>
    </item>
    <item>
      <title>Re: How do i display all?</title>
      <link>https://community.qlik.com/t5/QlikView/How-do-i-display-all/m-p/470539#M175764</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;where do you put this? on the dimension? both if?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Apr 2013 09:43:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-do-i-display-all/m-p/470539#M175764</guid>
      <dc:creator>n1ef5ng1</dc:creator>
      <dc:date>2013-04-19T09:43:50Z</dc:date>
    </item>
    <item>
      <title>Re: How do i display all?</title>
      <link>https://community.qlik.com/t5/QlikView/How-do-i-display-all/m-p/470540#M175765</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Dimension : Valuelist('London','Others')&lt;/P&gt;&lt;P&gt;Expression : if(Valuelist('London','Others')='London',&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; sum({&amp;lt;city={'London'}&amp;gt;}field1),sum({&amp;lt;city={'*'}&amp;gt;}field1))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The {'*'} will be all cities where there is a value. {'*'} also excludes nulls from the calculation&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Should give you what you looking for mate&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Byron&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Apr 2013 09:51:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-do-i-display-all/m-p/470540#M175765</guid>
      <dc:creator />
      <dc:date>2013-04-19T09:51:44Z</dc:date>
    </item>
    <item>
      <title>Re: How do i display all?</title>
      <link>https://community.qlik.com/t5/QlikView/How-do-i-display-all/m-p/470541#M175766</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what is field1?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Apr 2013 10:00:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-do-i-display-all/m-p/470541#M175766</guid>
      <dc:creator>n1ef5ng1</dc:creator>
      <dc:date>2013-04-19T10:00:58Z</dc:date>
    </item>
    <item>
      <title>Re: How do i display all?</title>
      <link>https://community.qlik.com/t5/QlikView/How-do-i-display-all/m-p/470542#M175767</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;replace field1 with the field you have in your document that you want to sum or count i.e. Revenue, Cost et cetera&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Apr 2013 10:20:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-do-i-display-all/m-p/470542#M175767</guid>
      <dc:creator />
      <dc:date>2013-04-19T10:20:00Z</dc:date>
    </item>
    <item>
      <title>Re: How do i display all?</title>
      <link>https://community.qlik.com/t5/QlikView/How-do-i-display-all/m-p/470543#M175768</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks alot&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Dimension : Valuelist('London','Others')&lt;/P&gt;&lt;P&gt;Expression : if(Valuelist('London','Others')='London',&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; sum({&amp;lt;city={'London'}&amp;gt;}field1),sum({&amp;lt;city={'*'}&amp;gt;}field1))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;say if i want to have three value list instead, london, other, % of shares&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how do i fix it on the expression?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Apr 2013 01:32:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-do-i-display-all/m-p/470543#M175768</guid>
      <dc:creator>n1ef5ng1</dc:creator>
      <dc:date>2013-04-22T01:32:23Z</dc:date>
    </item>
    <item>
      <title>Re: How do i display all?</title>
      <link>https://community.qlik.com/t5/QlikView/How-do-i-display-all/m-p/470544#M175769</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Heya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Valuelist if very resource intensive so always try and find alternative solutions if working with a really large dataset.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To add, just include it in the dimension separated by a comma e.g.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Dimension: Valuelist('London','Others','% of Shares')&lt;/P&gt;&lt;P&gt;Expression:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if(Valuelist('London','Others','% of Shares')='London',&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; sum({&amp;lt;city={'London'}&amp;gt;}field1),&lt;/P&gt;&lt;P&gt;if(Valuelist('London','Others','% of Shares')='Others',&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; null(),&lt;/P&gt;&lt;P&gt;if(Valuelist('London','Others','% of Shares')='% of Shares',&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; num(sum({&amp;lt;city={'London'}&amp;gt;}field1)/sum(TOTAL {&amp;lt;city={'London'}&amp;gt;}field1),'#.00%')))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope that helps mate&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Byron&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Apr 2013 11:13:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-do-i-display-all/m-p/470544#M175769</guid>
      <dc:creator />
      <dc:date>2013-04-26T11:13:08Z</dc:date>
    </item>
  </channel>
</rss>

