<?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: Ignore Dimension in Pivot Table in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Ignore-Dimension-in-Pivot-Table/m-p/954127#M328022</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this in the pivot table:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;=Sum(Aggr(Sum(Spent)/Count(TOTAL &amp;lt;City&amp;gt; customerId), Year, City, customerId))&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;&lt;IMG alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/97694_Capture.PNG" style="height: 252px; width: 620px;" /&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 02 Sep 2015 09:48:58 GMT</pubDate>
    <dc:creator>sunny_talwar</dc:creator>
    <dc:date>2015-09-02T09:48:58Z</dc:date>
    <item>
      <title>Ignore Dimension in Pivot Table</title>
      <link>https://community.qlik.com/t5/QlikView/Ignore-Dimension-in-Pivot-Table/m-p/954119#M328014</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i am struggling with following issue:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;let's say i have raw data like:&lt;/P&gt;&lt;TABLE border="1" class="jiveBorder" style="border: 1px solid rgb(0, 0, 0); width: 100%;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;Year&lt;/TH&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;City&lt;/TH&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;Spent&lt;/TH&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;2014&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;frankfurt&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;1200&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;2014&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;munich&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;3000&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;with this data i know how much money was spent for each city&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;amp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="1" class="jiveBorder" style="border: 1px solid rgb(0, 0, 0); width: 100%;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;City&lt;/TH&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;customerId&lt;/TH&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;frankfurt&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;frankfurt&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;2&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;munich&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;5&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;munich&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;6&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;munich&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;7&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;with this data i know which customer is connected to which city.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What i want to achieve know in Pivot Table is :&lt;/P&gt;&lt;P&gt;Based on the count of customers grouped by Year and City i want to Calculate the Column "Spent"&lt;/P&gt;&lt;P&gt;My Problem is i need to ignore the dimension customerId for the calculation of "Spent". I only know how mauch was spent in each city but not how much was spent per customerId. So i want to count the CustomerId per city and then Spent devided through Count of CustomerIds per city&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so let's say: munich spent 3000 and has 3 connected customerIds --&amp;gt; 3000/3 =&amp;nbsp; 1000&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That should be the result:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="1" class="jiveBorder" style="border: 1px solid rgb(0, 0, 0); width: 100%;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;STRONG&gt;Year&lt;BR /&gt;&lt;/STRONG&gt;&lt;/TH&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;STRONG&gt;City&lt;BR /&gt;&lt;/STRONG&gt;&lt;/TH&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;customerId&lt;/TH&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;Spent per customerId&lt;/TH&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;2014&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;frankfurt&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;1&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;600&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;2014&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;frankfurt&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;2&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;600&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;2014&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;munich&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;5&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;1000&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;2014&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;munich&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;6&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;1000&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;2014&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;munich&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;7&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;1000&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i tried a lot with aggr and rangesum functions but didn't get it work yet.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope somebody can help &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Sep 2015 08:25:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Ignore-Dimension-in-Pivot-Table/m-p/954119#M328014</guid>
      <dc:creator />
      <dc:date>2015-09-02T08:25:06Z</dc:date>
    </item>
    <item>
      <title>Re: Ignore Dimension in Pivot Table</title>
      <link>https://community.qlik.com/t5/QlikView/Ignore-Dimension-in-Pivot-Table/m-p/954120#M328015</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi you can try &lt;/P&gt;&lt;P&gt;sum(total&amp;lt;Year,City&amp;gt;Spent)/count(total&lt;SPAN style="font-size: 13.3333330154419px;"&gt;&amp;lt;Year,City&amp;gt;customerid)&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Sep 2015 08:34:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Ignore-Dimension-in-Pivot-Table/m-p/954120#M328015</guid>
      <dc:creator>lironbaram</dc:creator>
      <dc:date>2015-09-02T08:34:29Z</dc:date>
    </item>
    <item>
      <title>Re: Ignore Dimension in Pivot Table</title>
      <link>https://community.qlik.com/t5/QlikView/Ignore-Dimension-in-Pivot-Table/m-p/954121#M328016</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Like this?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Sep 2015 08:37:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Ignore-Dimension-in-Pivot-Table/m-p/954121#M328016</guid>
      <dc:creator>qlikmsg4u</dc:creator>
      <dc:date>2015-09-02T08:37:55Z</dc:date>
    </item>
    <item>
      <title>Re: Ignore Dimension in Pivot Table</title>
      <link>https://community.qlik.com/t5/QlikView/Ignore-Dimension-in-Pivot-Table/m-p/954122#M328017</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this expression:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;=Sum(Spent)/Count(TOTAL &amp;lt;City&amp;gt; customerId)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;IMG alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/97685_Capture.PNG" style="height: auto;" /&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Sep 2015 08:39:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Ignore-Dimension-in-Pivot-Table/m-p/954122#M328017</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2015-09-02T08:39:00Z</dc:date>
    </item>
    <item>
      <title>Re: Ignore Dimension in Pivot Table</title>
      <link>https://community.qlik.com/t5/QlikView/Ignore-Dimension-in-Pivot-Table/m-p/954123#M328018</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thank you all for your fast answers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;your solutions are all in Straight Table.&lt;/P&gt;&lt;P&gt;But i need to show this in Pivot Table.&lt;/P&gt;&lt;P&gt;The problem with pivot Table is that i get wrong Totals!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Like when the City is not expanded the result should be 3000 for munich and when its expanded to customerId the result should be 1000 for each customer &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Sep 2015 08:55:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Ignore-Dimension-in-Pivot-Table/m-p/954123#M328018</guid>
      <dc:creator />
      <dc:date>2015-09-02T08:55:52Z</dc:date>
    </item>
    <item>
      <title>Re: Ignore Dimension in Pivot Table</title>
      <link>https://community.qlik.com/t5/QlikView/Ignore-Dimension-in-Pivot-Table/m-p/954124#M328019</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ok &lt;/P&gt;&lt;P&gt;so use this expression&lt;/P&gt;&lt;P&gt;sum(aggr(sum(Spent)/count(Total&amp;lt;Year,City&amp;gt; customerId),customerId,City,Year))&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Sep 2015 09:19:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Ignore-Dimension-in-Pivot-Table/m-p/954124#M328019</guid>
      <dc:creator>lironbaram</dc:creator>
      <dc:date>2015-09-02T09:19:57Z</dc:date>
    </item>
    <item>
      <title>Re: Ignore Dimension in Pivot Table</title>
      <link>https://community.qlik.com/t5/QlikView/Ignore-Dimension-in-Pivot-Table/m-p/954125#M328020</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Steve,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try this in a pivot please:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;If&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; (&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Dimensionality&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;() = 1,&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;Spent&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;), &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;If&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; (&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Dimensionality&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;()= 2, &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;Spent&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;),&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: #0000ff; font-size: 8pt;"&gt;total&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;Year&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;City&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;gt;&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;Spent&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;)/&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;count&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;total&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;Year&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;City&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;gt;&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;CustomerId&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;))) &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;HTH - Andy&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Sep 2015 09:25:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Ignore-Dimension-in-Pivot-Table/m-p/954125#M328020</guid>
      <dc:creator>awhitfield</dc:creator>
      <dc:date>2015-09-02T09:25:50Z</dc:date>
    </item>
    <item>
      <title>Re: Ignore Dimension in Pivot Table</title>
      <link>https://community.qlik.com/t5/QlikView/Ignore-Dimension-in-Pivot-Table/m-p/954126#M328021</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=if(Dimensionality()&amp;lt;=2,&lt;/P&gt;&lt;P&gt;sum(Spent),&lt;/P&gt;&lt;P&gt;sum(total&amp;lt;CustomerID&amp;gt;Spent)/count(TOTAL&amp;lt;City&amp;gt;CustomerID))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Untitled1.jpg" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/97702_Untitled1.jpg" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Untitled2.jpg" class="jive-image image-2" src="https://community.qlik.com/legacyfs/online/97709_Untitled2.jpg" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please see the attached&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Sep 2015 09:32:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Ignore-Dimension-in-Pivot-Table/m-p/954126#M328021</guid>
      <dc:creator>Kushal_Chawda</dc:creator>
      <dc:date>2015-09-02T09:32:52Z</dc:date>
    </item>
    <item>
      <title>Re: Ignore Dimension in Pivot Table</title>
      <link>https://community.qlik.com/t5/QlikView/Ignore-Dimension-in-Pivot-Table/m-p/954127#M328022</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this in the pivot table:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;=Sum(Aggr(Sum(Spent)/Count(TOTAL &amp;lt;City&amp;gt; customerId), Year, City, customerId))&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;&lt;IMG alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/97694_Capture.PNG" style="height: 252px; width: 620px;" /&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Sep 2015 09:48:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Ignore-Dimension-in-Pivot-Table/m-p/954127#M328022</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2015-09-02T09:48:58Z</dc:date>
    </item>
    <item>
      <title>Re: Ignore Dimension in Pivot Table</title>
      <link>https://community.qlik.com/t5/QlikView/Ignore-Dimension-in-Pivot-Table/m-p/954128#M328023</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Like this?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Sep 2015 10:19:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Ignore-Dimension-in-Pivot-Table/m-p/954128#M328023</guid>
      <dc:creator>sasiparupudi1</dc:creator>
      <dc:date>2015-09-02T10:19:41Z</dc:date>
    </item>
    <item>
      <title>Re: Ignore Dimension in Pivot Table</title>
      <link>https://community.qlik.com/t5/QlikView/Ignore-Dimension-in-Pivot-Table/m-p/954129#M328024</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thank you all for yor fast replies &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Sep 2015 07:10:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Ignore-Dimension-in-Pivot-Table/m-p/954129#M328024</guid>
      <dc:creator />
      <dc:date>2015-09-03T07:10:25Z</dc:date>
    </item>
  </channel>
</rss>

