<?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: Pivot table - dimension repeat in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Pivot-table-dimension-repeat/m-p/700168#M252760</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Its showing because you have that particular value of patiala in district and city as well..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you really want to omit it,then&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;instead of CITY as dimension use following as calculated dimension&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if(CITY=DISTRICT,null(),CITY)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and Supress when Value is null(check the checkbox for this dimension)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PFA the example&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 27 Oct 2014 06:50:00 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2014-10-27T06:50:00Z</dc:date>
    <item>
      <title>Pivot table - dimension repeat</title>
      <link>https://community.qlik.com/t5/QlikView/Pivot-table-dimension-repeat/m-p/700165#M252757</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;below is the create table script&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;create table region (area varchar2(30), district varchar2(30), city varchar2(30));&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;insert into region values ('chandigarh', 'chandigarh', 'chandigarh');&lt;/P&gt;&lt;P&gt;insert into region values ('punjab', 'patiala', 'patiala');&lt;/P&gt;&lt;P&gt;insert into region values ('punjab', 'patiala', 'nabha');&lt;/P&gt;&lt;P&gt;insert into region values ('punjab', 'patiala', 'SAN');&lt;/P&gt;&lt;P&gt;insert into region values ('punjab', 'SAS', 'SAS');&lt;/P&gt;&lt;P&gt;insert into region values ('punjab', 'SAS', 'ZRK');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i added all column area , district, and city in dimension of PIVOT table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in city i have repeated values same reside in DISTRICT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i dont want to see highlighted values in red box in CITY column&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="69721" alt="" class="jiveImage" src="https://community.qlik.com/legacyfs/online/69721_pastedImage_1.png" style="width: auto; height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how can i limit this from -CHART - DIMENSION - PROPERTIES &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Oct 2014 06:37:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Pivot-table-dimension-repeat/m-p/700165#M252757</guid>
      <dc:creator />
      <dc:date>2014-10-27T06:37:24Z</dc:date>
    </item>
    <item>
      <title>Re: Pivot table - dimension repeat</title>
      <link>https://community.qlik.com/t5/QlikView/Pivot-table-dimension-repeat/m-p/700166#M252758</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;In script write below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;district &lt;/SPAN&gt;=&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;city &lt;/SPAN&gt;,'',&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;city &lt;/SPAN&gt;) as City&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In chart suppress null values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;ASHFAQ&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Oct 2014 06:43:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Pivot-table-dimension-repeat/m-p/700166#M252758</guid>
      <dc:creator>ashfaq_haseeb</dc:creator>
      <dc:date>2014-10-27T06:43:40Z</dc:date>
    </item>
    <item>
      <title>Re: Pivot table - dimension repeat</title>
      <link>https://community.qlik.com/t5/QlikView/Pivot-table-dimension-repeat/m-p/700167#M252759</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For CITY dimension use, calculated dimension: If(CITY&amp;lt;&amp;gt;DISTRICT, CITY), then in the dimension tab, select the expression and check 'Supress When Value is Null' .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Oct 2014 06:47:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Pivot-table-dimension-repeat/m-p/700167#M252759</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2014-10-27T06:47:00Z</dc:date>
    </item>
    <item>
      <title>Re: Pivot table - dimension repeat</title>
      <link>https://community.qlik.com/t5/QlikView/Pivot-table-dimension-repeat/m-p/700168#M252760</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Its showing because you have that particular value of patiala in district and city as well..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you really want to omit it,then&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;instead of CITY as dimension use following as calculated dimension&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if(CITY=DISTRICT,null(),CITY)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and Supress when Value is null(check the checkbox for this dimension)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PFA the example&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Oct 2014 06:50:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Pivot-table-dimension-repeat/m-p/700168#M252760</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-10-27T06:50:00Z</dc:date>
    </item>
    <item>
      <title>Re: Pivot table - dimension repeat</title>
      <link>https://community.qlik.com/t5/QlikView/Pivot-table-dimension-repeat/m-p/700169#M252761</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks ashfaq, but i need to perform changes at chart level (properties).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Oct 2014 06:51:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Pivot-table-dimension-repeat/m-p/700169#M252761</guid>
      <dc:creator />
      <dc:date>2014-10-27T06:51:04Z</dc:date>
    </item>
    <item>
      <title>Re: Pivot table - dimension repeat</title>
      <link>https://community.qlik.com/t5/QlikView/Pivot-table-dimension-repeat/m-p/700170#M252762</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;then &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use this&lt;/P&gt;&lt;P&gt;if(CITY=DISTRICT,null(),CITY) as your calculated dimension and supress null values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;ASHFAQ&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Oct 2014 06:52:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Pivot-table-dimension-repeat/m-p/700170#M252762</guid>
      <dc:creator>ashfaq_haseeb</dc:creator>
      <dc:date>2014-10-27T06:52:10Z</dc:date>
    </item>
    <item>
      <title>Re: Pivot table - dimension repeat</title>
      <link>https://community.qlik.com/t5/QlikView/Pivot-table-dimension-repeat/m-p/700171#M252763</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;sorry guys still not working... i will back on same soon&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks for being there&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Oct 2014 07:13:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Pivot-table-dimension-repeat/m-p/700171#M252763</guid>
      <dc:creator />
      <dc:date>2014-10-27T07:13:48Z</dc:date>
    </item>
    <item>
      <title>Re: Pivot table - dimension repeat</title>
      <link>https://community.qlik.com/t5/QlikView/Pivot-table-dimension-repeat/m-p/700172#M252764</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;In script try like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;*,&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;If(district &amp;lt;&amp;gt; city, 1, 0) AS Flag&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;FROM DataSource;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&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;"&gt;Now in chart try like this&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&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;"&gt;Dimension: district, city&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Expression:Count({&amp;lt;Flag={1}&amp;gt;}District)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&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;"&gt;Hope this helps you.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&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;"&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Jagan.&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;"&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;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Oct 2014 07:43:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Pivot-table-dimension-repeat/m-p/700172#M252764</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2014-10-27T07:43:12Z</dc:date>
    </item>
    <item>
      <title>Re: Pivot table - dimension repeat</title>
      <link>https://community.qlik.com/t5/QlikView/Pivot-table-dimension-repeat/m-p/700173#M252765</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Have you checked my example????&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Oct 2014 09:16:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Pivot-table-dimension-repeat/m-p/700173#M252765</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-10-27T09:16:51Z</dc:date>
    </item>
    <item>
      <title>Re: Pivot table - dimension repeat</title>
      <link>https://community.qlik.com/t5/QlikView/Pivot-table-dimension-repeat/m-p/700174#M252766</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks i have checked ur answer ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;actullay i am writing the if statement in "Enable conditional" box,, i.e. where i performing wrong.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Oct 2014 12:50:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Pivot-table-dimension-repeat/m-p/700174#M252766</guid>
      <dc:creator />
      <dc:date>2014-10-27T12:50:02Z</dc:date>
    </item>
  </channel>
</rss>

