<?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 char table with calculated dimonsion in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/char-table-with-calculated-dimonsion/m-p/1013444#M642376</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi all,and happy new years,&lt;/P&gt;&lt;P&gt;i hve this script&lt;/P&gt;&lt;P&gt; load contry,salses&lt;/P&gt;&lt;P&gt;from ..&lt;/P&gt;&lt;P&gt;in the chart table i used for the first dimension the contry, in the expresssion i used the sum(sales),&lt;/P&gt;&lt;P&gt;my prob is: i want to use a calculate dimension for all contries that start by 'a' that's all ,i want to display only calculated values,&lt;/P&gt;&lt;P&gt;but it doesn't work can anyone help me please&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 02 Jan 2016 19:13:44 GMT</pubDate>
    <dc:creator />
    <dc:date>2016-01-02T19:13:44Z</dc:date>
    <item>
      <title>char table with calculated dimonsion</title>
      <link>https://community.qlik.com/t5/QlikView/char-table-with-calculated-dimonsion/m-p/1013444#M642376</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi all,and happy new years,&lt;/P&gt;&lt;P&gt;i hve this script&lt;/P&gt;&lt;P&gt; load contry,salses&lt;/P&gt;&lt;P&gt;from ..&lt;/P&gt;&lt;P&gt;in the chart table i used for the first dimension the contry, in the expresssion i used the sum(sales),&lt;/P&gt;&lt;P&gt;my prob is: i want to use a calculate dimension for all contries that start by 'a' that's all ,i want to display only calculated values,&lt;/P&gt;&lt;P&gt;but it doesn't work can anyone help me please&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 02 Jan 2016 19:13:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/char-table-with-calculated-dimonsion/m-p/1013444#M642376</guid>
      <dc:creator />
      <dc:date>2016-01-02T19:13:44Z</dc:date>
    </item>
    <item>
      <title>Re: char table with calculated dimonsion</title>
      <link>https://community.qlik.com/t5/QlikView/char-table-with-calculated-dimonsion/m-p/1013445#M642377</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;If you are only trying to show values for the countries that start with a, then you can do it with set analysis:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sum({&amp;lt;country={"=WildMatch(country, 'a*')"}&amp;gt;}Sales)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This only calculates sum of sales for the countries that start with a.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 02 Jan 2016 23:44:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/char-table-with-calculated-dimonsion/m-p/1013445#M642377</guid>
      <dc:creator>sinanozdemir</dc:creator>
      <dc:date>2016-01-02T23:44:21Z</dc:date>
    </item>
    <item>
      <title>Re: char table with calculated dimonsion</title>
      <link>https://community.qlik.com/t5/QlikView/char-table-with-calculated-dimonsion/m-p/1013446#M642378</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Or another way to show only countries that start with a in a calculated dimension is:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If(WildMatch(country, 'a*'), country)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 02 Jan 2016 23:46:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/char-table-with-calculated-dimonsion/m-p/1013446#M642378</guid>
      <dc:creator>sinanozdemir</dc:creator>
      <dc:date>2016-01-02T23:46:13Z</dc:date>
    </item>
    <item>
      <title>Re: char table with calculated dimonsion</title>
      <link>https://community.qlik.com/t5/QlikView/char-table-with-calculated-dimonsion/m-p/1013447#M642379</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You won't need a calculated dimension, you can do this using a&lt;SPAN style="font-size: 13.3333px;"&gt; set analysis&lt;/SPAN&gt; expression with a simple search like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'courier new', courier;"&gt;=Sum({&amp;lt;contry={'a*'}&amp;gt;}Sales)&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: 13px;"&gt;&lt;BR /&gt;&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: 13px;"&gt;Set analysis restricts expression outcome to the dimension values you want by reducing the total data set for this object to just the countries whose names start with an 'a'.&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: 13px;"&gt;&lt;BR /&gt;&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: 13px;"&gt;Best,&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: 13px;"&gt;&lt;BR /&gt;&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: 13px;"&gt;Peter&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 03 Jan 2016 00:01:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/char-table-with-calculated-dimonsion/m-p/1013447#M642379</guid>
      <dc:creator>Peter_Cammaert</dc:creator>
      <dc:date>2016-01-03T00:01:15Z</dc:date>
    </item>
    <item>
      <title>Re: char table with calculated dimonsion</title>
      <link>https://community.qlik.com/t5/QlikView/char-table-with-calculated-dimonsion/m-p/1013448#M642380</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your answer ;&lt;/P&gt;&lt;P&gt;i used this exporession, in the seconed&amp;nbsp; column of slaes (column of expression) ,, it get it perfectly but it gets all values of the first dimonsion&amp;nbsp; and it put '-'&amp;nbsp; in the countries that&amp;nbsp; doesn't start by 'a' ,&lt;/P&gt;&lt;P&gt;the first column :&lt;/P&gt;&lt;P&gt;i used this scripts :&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'courier new', courier; font-size: 13px;"&gt;=Only({&amp;lt;contry={'a*'}&amp;gt;}country)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'courier new', courier; font-size: 13px;"&gt;the second:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'courier new', courier;"&gt;=sum({&amp;lt;contry={'a*'}&amp;gt;}Sales)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'courier new', courier;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'courier new', courier;"&gt;help me please !&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 03 Jan 2016 07:22:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/char-table-with-calculated-dimonsion/m-p/1013448#M642380</guid>
      <dc:creator />
      <dc:date>2016-01-03T07:22:50Z</dc:date>
    </item>
    <item>
      <title>Re: char table with calculated dimonsion</title>
      <link>https://community.qlik.com/t5/QlikView/char-table-with-calculated-dimonsion/m-p/1013449#M642381</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 13.3333px;"&gt;thanks for your answer,&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;this is just an exemple to do it in my script ,&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;how i can inject a lotof condition in your expression like :&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Only({&amp;lt;sales ={"&amp;gt;0"},ID ={'id1','id2','id3'},typeDocument&lt;STRONG&gt; -=&lt;/STRONG&gt;{'d1','d2','d3'}, PR-={'PE'},type&lt;STRONG&gt; -=&lt;/STRONG&gt; {''}&amp;gt;}Document)&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 03 Jan 2016 07:32:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/char-table-with-calculated-dimonsion/m-p/1013449#M642381</guid>
      <dc:creator />
      <dc:date>2016-01-03T07:32:51Z</dc:date>
    </item>
    <item>
      <title>Re: char table with calculated dimonsion</title>
      <link>https://community.qlik.com/t5/QlikView/char-table-with-calculated-dimonsion/m-p/1013450#M642382</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As I said, you won't need a calculated dimension. Change the calculated dimension back into a simple field name, e.g. contry. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Expressions have a default setting that 0 and NULL values should be suppressed. Leave that setting as is. Since your expression with set analysis will only produce results for countries that start with an 'a', all other countries will be suppressed.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 03 Jan 2016 14:20:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/char-table-with-calculated-dimonsion/m-p/1013450#M642382</guid>
      <dc:creator>Peter_Cammaert</dc:creator>
      <dc:date>2016-01-03T14:20:20Z</dc:date>
    </item>
  </channel>
</rss>

