<?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: Cross table wanted in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Cross-table-wanted/m-p/913969#M317036</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Manish for your immediate response, what I want is actually this but can we avoid the two labels Dimension1 and Dimension2 so that it looks like a cross table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Kiran Kumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 24 Jul 2015 11:16:06 GMT</pubDate>
    <dc:creator>kkkumar82</dc:creator>
    <dc:date>2015-07-24T11:16:06Z</dc:date>
    <item>
      <title>Cross table wanted</title>
      <link>https://community.qlik.com/t5/QlikView/Cross-table-wanted/m-p/913967#M317034</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Qlikers,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a small requirement let me explain. I have four variables two for product and two for supplier. My requirement of showing the data is in this way.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" height="73.18181824684143" style="width: 350.181818246841px; height: 77.1818182468414px;" width="348.18181824684143"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD class="xl63" height="20" width="64"&gt;&lt;/TD&gt;&lt;TD class="xl64" style="border-left: none;" width="64"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Old&lt;/TD&gt;&lt;TD class="xl64" style="border-left: none;" width="64"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; New&lt;/TD&gt;&lt;TD class="xl64" style="border-left: none;" width="64"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Growth&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl64" height="20" style="border-top: none;"&gt;Product&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;1500&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;2000&lt;/TD&gt;&lt;TD align="right" class="xl65" style="border-top: none; border-left: none;"&gt;25%&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl64" height="20" style="border-top: none;"&gt;Supplier&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;5000&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;4500&lt;/TD&gt;&lt;TD align="right" class="xl66" style="border-top: none; border-left: none;"&gt;-11.11%&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But I have used to straight table without any dimension and I got the data in a single row.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;point to be noted I dont have Product, Supplier Dimensions(assumption).I am attaching a sample qvw(Wanted Dimension sheet).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Jul 2015 10:30:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Cross-table-wanted/m-p/913967#M317034</guid>
      <dc:creator>kkkumar82</dc:creator>
      <dc:date>2015-07-24T10:30:10Z</dc:date>
    </item>
    <item>
      <title>Re: Cross table wanted</title>
      <link>https://community.qlik.com/t5/QlikView/Cross-table-wanted/m-p/913968#M317035</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Create a Pivot Table&lt;/P&gt;&lt;P&gt;Calculated Dimension&lt;/P&gt;&lt;P&gt;=ValueList('Product','Supplier')&lt;/P&gt;&lt;P&gt;=ValueList('New','Old','Growth')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Expression&lt;/P&gt;&lt;P&gt;IF(ValueList('Product','Supplier') = 'Product' and ValueList('New','Old','Growth') = 'New', Num($(ProductNewSale),'##0') ,&lt;/P&gt;&lt;P&gt;IF(ValueList('Product','Supplier') = 'Product' and ValueList('New','Old','Growth') = 'Old', Num($(ProductOldSale),'##0') ,&lt;/P&gt;&lt;P&gt;IF(ValueList('Product','Supplier') = 'Product' and ValueList('New','Old','Growth') = 'Growth', Num(($(ProductNewSale) - $(ProductOldSale))/$(ProductNewSale),'#0.00%') ,&lt;/P&gt;&lt;P&gt;IF(ValueList('Product','Supplier') = 'Supplier' and ValueList('New','Old','Growth') = 'New', Num($(SupplierOldSale),'##0') ,&lt;/P&gt;&lt;P&gt;IF(ValueList('Product','Supplier') = 'Supplier' and ValueList('New','Old','Growth') = 'Old', Num($(SupplierNewSale),'##0') ,&lt;/P&gt;&lt;P&gt;IF(ValueList('Product','Supplier') = 'Supplier' and ValueList('New','Old','Growth') = 'Growth', Num(($(SupplierOldSale) - $(SupplierNewSale))/$(SupplierNewSale),'#0.00%')))))))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check enclosed file...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Jul 2015 10:56:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Cross-table-wanted/m-p/913968#M317035</guid>
      <dc:creator>MK_QSL</dc:creator>
      <dc:date>2015-07-24T10:56:39Z</dc:date>
    </item>
    <item>
      <title>Re: Cross table wanted</title>
      <link>https://community.qlik.com/t5/QlikView/Cross-table-wanted/m-p/913969#M317036</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Manish for your immediate response, what I want is actually this but can we avoid the two labels Dimension1 and Dimension2 so that it looks like a cross table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Kiran Kumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Jul 2015 11:16:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Cross-table-wanted/m-p/913969#M317036</guid>
      <dc:creator>kkkumar82</dc:creator>
      <dc:date>2015-07-24T11:16:06Z</dc:date>
    </item>
    <item>
      <title>Re: Cross table wanted</title>
      <link>https://community.qlik.com/t5/QlikView/Cross-table-wanted/m-p/913970#M317037</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;YES&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Jul 2015 11:29:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Cross-table-wanted/m-p/913970#M317037</guid>
      <dc:creator>MK_QSL</dc:creator>
      <dc:date>2015-07-24T11:29:41Z</dc:date>
    </item>
    <item>
      <title>Re: Cross table wanted</title>
      <link>https://community.qlik.com/t5/QlikView/Cross-table-wanted/m-p/913971#M317038</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks alot, can you share or create a document which explains how valuelist or valueloop functions works.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kiran Kumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Jul 2015 11:37:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Cross-table-wanted/m-p/913971#M317038</guid>
      <dc:creator>kkkumar82</dc:creator>
      <dc:date>2015-07-24T11:37:56Z</dc:date>
    </item>
    <item>
      <title>Re: Cross table wanted</title>
      <link>https://community.qlik.com/t5/QlikView/Cross-table-wanted/m-p/913972#M317039</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/qlik-blogpost/3196"&gt;ValueList() – For those tricky situations&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Jul 2015 11:42:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Cross-table-wanted/m-p/913972#M317039</guid>
      <dc:creator>MK_QSL</dc:creator>
      <dc:date>2015-07-24T11:42:34Z</dc:date>
    </item>
  </channel>
</rss>

