<?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 how to exclude certain values from one dimension in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/how-to-exclude-certain-values-from-one-dimension/m-p/239510#M90122</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Goodmorning,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;to show only the values i want works perfectly!!! thank you all very much!&lt;/P&gt;&lt;P&gt;however to exclude values that doesn't seem to work... if i put a "-" after fase and before the equasion&lt;/P&gt;&lt;P&gt;it shows everything including the values between brackets.&lt;/P&gt;&lt;P&gt;have you got a clue what this might be?&lt;/P&gt;&lt;P&gt;this is the formula:&lt;/P&gt;&lt;P&gt;count ( {$ &amp;lt; [status bestelbon] - ={'aanvul' , 'aanvul ok'} &amp;gt; } bestelbonnummer)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanx!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;chris&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 17 Oct 2010 07:33:38 GMT</pubDate>
    <dc:creator>chriscools</dc:creator>
    <dc:date>2010-10-17T07:33:38Z</dc:date>
    <item>
      <title>how to exclude certain values from one dimension</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-exclude-certain-values-from-one-dimension/m-p/239507#M90119</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;i want to make a bar chart of orders that are in the warehouse.&lt;/P&gt;&lt;P&gt;i habe a tabel where i can see every order and in which fase it is.&lt;/P&gt;&lt;P&gt;now i want to make a bar chart to see how many orders there are in each fase.&lt;/P&gt;&lt;P&gt;but the last fase is completed, and about 90% of the orders in the table at this moment are completed.&lt;/P&gt;&lt;P&gt;so the relevant fases (not yet begon, picked, packed,...) have a really tiny bar...&lt;/P&gt;&lt;P&gt;is it possible to show the fase as dimension but to exclude 3 or 4 fases (there are 12 in total, and 8 i want to see).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanx for your help!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;grtz,&lt;/P&gt;&lt;P&gt;chris&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 16 Oct 2010 14:58:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-exclude-certain-values-from-one-dimension/m-p/239507#M90119</guid>
      <dc:creator>chriscools</dc:creator>
      <dc:date>2010-10-16T14:58:52Z</dc:date>
    </item>
    <item>
      <title>how to exclude certain values from one dimension</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-exclude-certain-values-from-one-dimension/m-p/239508#M90120</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Chris,&lt;/P&gt;&lt;P&gt;there are more than one posibility to show only few bars in a chart:&lt;/P&gt;&lt;P&gt;one is using "Dimension Limitations" on the Presetation tab --&amp;gt; check "Max Visible Numbers" (and) "Show x-axis"; together with your favorite sorting&lt;/P&gt;&lt;P&gt;another (I think better to solve your problem) is using SET Analysis in your formula like&lt;/P&gt;&lt;P style="font-style: italic"&gt;count( {$} &amp;lt;{fase = {'not yet begon', 'picked'} }&amp;gt; } orders)&lt;/P&gt;&lt;P&gt;Means: the {$} = the actuel user selection, BUTcount only these orders with fase = 'not yet begon' OR 'picked';&lt;/P&gt;&lt;P&gt;P.S.: the syntax above is "handmade", must not be totally correct&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this hels&lt;/P&gt;&lt;P&gt;Roland&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 16 Oct 2010 15:21:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-exclude-certain-values-from-one-dimension/m-p/239508#M90120</guid>
      <dc:creator />
      <dc:date>2010-10-16T15:21:31Z</dc:date>
    </item>
    <item>
      <title>how to exclude certain values from one dimension</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-exclude-certain-values-from-one-dimension/m-p/239509#M90121</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Chris&lt;/P&gt;&lt;P&gt;I believe Roland's expression should read&lt;/P&gt;&lt;P style="font-style: italic"&gt;count({$&amp;lt;fase = {'not yet begon', 'picked'}&amp;gt;} orders)&lt;/P&gt;&lt;P&gt;This expression will include the value in the curly braces. If you wish to exclude certain values, then use&lt;/P&gt;&lt;P style="font-style: italic"&gt;count({$&amp;lt;fase -= {'not yet begon', 'picked'}&amp;gt;} orders)&lt;/P&gt;&lt;P&gt;Again, correct the expression so that it is correct for your data.&lt;/P&gt;&lt;P&gt;Jonathan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 16 Oct 2010 18:17:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-exclude-certain-values-from-one-dimension/m-p/239509#M90121</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2010-10-16T18:17:30Z</dc:date>
    </item>
    <item>
      <title>how to exclude certain values from one dimension</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-exclude-certain-values-from-one-dimension/m-p/239510#M90122</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Goodmorning,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;to show only the values i want works perfectly!!! thank you all very much!&lt;/P&gt;&lt;P&gt;however to exclude values that doesn't seem to work... if i put a "-" after fase and before the equasion&lt;/P&gt;&lt;P&gt;it shows everything including the values between brackets.&lt;/P&gt;&lt;P&gt;have you got a clue what this might be?&lt;/P&gt;&lt;P&gt;this is the formula:&lt;/P&gt;&lt;P&gt;count ( {$ &amp;lt; [status bestelbon] - ={'aanvul' , 'aanvul ok'} &amp;gt; } bestelbonnummer)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanx!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;chris&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 17 Oct 2010 07:33:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-exclude-certain-values-from-one-dimension/m-p/239510#M90122</guid>
      <dc:creator>chriscools</dc:creator>
      <dc:date>2010-10-17T07:33:38Z</dc:date>
    </item>
    <item>
      <title>how to exclude certain values from one dimension</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-exclude-certain-values-from-one-dimension/m-p/239511#M90123</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Chris,&lt;/P&gt;&lt;P&gt;It may be a typo but make sure you have the following without spaces or blanks in the operator&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;count ({$&amp;lt; [status bestelbon] &lt;B&gt;-=&lt;/B&gt; {'aanvul', 'aanvul ok'} &amp;gt;} bestelbonnummer)&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;Hope that helps!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 17 Oct 2010 11:36:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-exclude-certain-values-from-one-dimension/m-p/239511#M90123</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2010-10-17T11:36:57Z</dc:date>
    </item>
    <item>
      <title>how to exclude certain values from one dimension</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-exclude-certain-values-from-one-dimension/m-p/239512#M90124</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanx!&lt;/P&gt;&lt;P&gt;it was indeed a typo, i left a blank between - and =&lt;/P&gt;&lt;P&gt;now it works perfectly!!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;than you all for the answers!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;grtz&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 17 Oct 2010 11:49:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-exclude-certain-values-from-one-dimension/m-p/239512#M90124</guid>
      <dc:creator>chriscools</dc:creator>
      <dc:date>2010-10-17T11:49:44Z</dc:date>
    </item>
    <item>
      <title>how to exclude certain values from one dimension</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-exclude-certain-values-from-one-dimension/m-p/239513#M90125</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Chris&lt;/P&gt;&lt;P&gt;I think you have a space between the - and = signs. Try it without the space&lt;/P&gt;&lt;P&gt;Jonathan&lt;/P&gt;&lt;P&gt;Edit - beaten to the punch!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 17 Oct 2010 13:32:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-exclude-certain-values-from-one-dimension/m-p/239513#M90125</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2010-10-17T13:32:40Z</dc:date>
    </item>
    <item>
      <title>how to exclude certain values from one dimension</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-exclude-certain-values-from-one-dimension/m-p/239514#M90126</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Miguel/Jonathan&lt;/P&gt;&lt;P&gt;it was so informative to remove a certain value from a dimension from showing up in the chart. but am confused when we have mutiple dimensions in x-asis. we have two.. region and year.&lt;/P&gt;&lt;P&gt;We might have junk values having '-' in dimensions. now the issue is when we have multiple dimensions. Based on the information u have provided, I have changed my expression to&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P style="font-weight: bold"&gt;&lt;/P&gt;&lt;P style="font-weight: bold"&gt;Avg&lt;/P&gt;&lt;B&gt;&lt;/B&gt;&lt;P style="font-weight: bold"&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;({$&amp;lt;&lt;B&gt;[YEAR_NUM]&lt;/B&gt;-={'-'}&amp;gt;}&lt;B&gt;TAT&lt;/B&gt;) &lt;BR /&gt;&lt;BR /&gt; &lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;and it helps in removing those values with year value as - . but the second dimension is region and i want to eliminate regions with value - ..so i need an expression which tells to show the avg(tat) where region value not equal to - or year value not equal to -&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Feb 2011 15:09:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-exclude-certain-values-from-one-dimension/m-p/239514#M90126</guid>
      <dc:creator />
      <dc:date>2011-02-14T15:09:38Z</dc:date>
    </item>
    <item>
      <title>how to exclude certain values from one dimension</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-exclude-certain-values-from-one-dimension/m-p/239515#M90127</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I think I'm missing something. That "-" value means "null", and usually is not an intended symbol. That means that some value that is not in the dimension shares fields with expressions (e. g. in a calculated dimension).&lt;/P&gt;&lt;P&gt;But in regards to the syntax in set analysis, that would be&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;Avg({&amp;lt; [YEAR_NUM] -= {'-'}, Region -= {'-'} &amp;gt;} TAT)&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;If those values shouldn't be aggregated you can try going to the chart properties, dimensions, select YEAR_NUM and Region and click on "Suppress null values".&lt;/P&gt;&lt;P&gt;Hope that helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Feb 2011 16:17:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-exclude-certain-values-from-one-dimension/m-p/239515#M90127</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2011-02-14T16:17:38Z</dc:date>
    </item>
  </channel>
</rss>

