<?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 Transform Table in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Transform-Table/m-p/184715#M49472</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Smile" src="http://community.qlik.com/emoticons/emotion-1.gif" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 17 Mar 2010 18:15:10 GMT</pubDate>
    <dc:creator />
    <dc:date>2010-03-17T18:15:10Z</dc:date>
    <item>
      <title>Transform Table</title>
      <link>https://community.qlik.com/t5/QlikView/Transform-Table/m-p/184713#M49470</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Apologies for the very bad format of this post. Nonetheless, I have been struggling in applying the [Code] and[ /code] trick suggested by Jason in his post.&lt;/P&gt;&lt;P&gt;I have the following table in Excel loaded QV.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;B&gt;QUALIFY&lt;/B&gt;*;&lt;/P&gt;&lt;P&gt;&lt;B&gt;UNQUALIFY&lt;/B&gt; ElectricalDevicesDateID;&lt;/P&gt;&lt;P style="font-style: italic"&gt;ElectricalDevices:&lt;/P&gt;&lt;P style="font-weight: bold"&gt;LOAD&lt;/P&gt;&lt;P&gt;autonumber(UpdatedDate) &lt;B&gt;AS&lt;/B&gt; ElectricalDevicesDateID,&lt;/P&gt;&lt;P&gt;UpdatedDate,&lt;/P&gt;&lt;P&gt;PDA,&lt;/P&gt;&lt;P&gt;Blackberry,&lt;/P&gt;&lt;P&gt;Phone,&lt;/P&gt;&lt;P&gt;Laptop&lt;/P&gt;&lt;P style="font-weight: bold"&gt;FROM&lt;/P&gt;&lt;P&gt;.. \INFOSEC\InfosecKPIs.xls&lt;/P&gt;&lt;P&gt;(biff, embedded labels, table is Sheet2$);&lt;/P&gt;&lt;P&gt;&lt;B&gt;UNQUALIFY&lt;/B&gt;*;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would like to load the table into QV so that I get to the result below:&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;&lt;STRONG&gt;UpdatedDate&lt;/STRONG&gt; Type Quantity&lt;/P&gt;&lt;P&gt;31/1/2010 Laptop 10&lt;/P&gt;&lt;P&gt;31/1/2010 PDA 3&lt;/P&gt;&lt;P&gt;31/1/2010 Balckberry 1&lt;/P&gt;&lt;P&gt;31/1/2010 Phone 10&lt;/P&gt;&lt;P&gt;28/2/2010 PDA 5&lt;/P&gt;&lt;P&gt;28/2/2010 Phone 7&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And so forth and so on.&lt;/P&gt;&lt;P&gt;In other words, I have a crosstab in Excel with fields as Laptop, PDA, Phone and their values in the cells by date.&lt;/P&gt;&lt;P&gt;Any help would be much appreciate.&lt;/P&gt;&lt;P&gt;Andrea&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Mar 2010 17:30:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Transform-Table/m-p/184713#M49470</guid>
      <dc:creator />
      <dc:date>2010-03-17T17:30:51Z</dc:date>
    </item>
    <item>
      <title>Transform Table</title>
      <link>https://community.qlik.com/t5/QlikView/Transform-Table/m-p/184714#M49471</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Friend, try this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ElectricalDevices:&lt;BR /&gt;LOAD&lt;BR /&gt;autonumber(UpdatedDate) AS ElectricalDevicesDateID,&lt;BR /&gt;UpdatedDate,&lt;BR /&gt;PDA,&lt;BR /&gt;Blackberry,&lt;BR /&gt;Phone,&lt;BR /&gt;Laptop&lt;BR /&gt;FROM ..\INFOSEC\InfosecKPIs.xls (biff, embedded labels, table is Sheet2$);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Final:&lt;BR /&gt;Load&lt;BR /&gt;UpdatedDate,&lt;BR /&gt;count(Blackberry) as Quantity,&lt;BR /&gt;'Blackberry' as Type&lt;BR /&gt;resident ElectricalDevices&lt;BR /&gt;group by UpdatedDate;&lt;/P&gt;&lt;P&gt;concatenate&lt;BR /&gt;Load&lt;BR /&gt;UpdatedDate,&lt;BR /&gt;count(PDA) as Quantity,&lt;BR /&gt;'PDA' as Type&lt;BR /&gt;resident ElectricalDevices&lt;BR /&gt;group by UpdatedDate;&lt;/P&gt;&lt;P&gt;concatenate&lt;BR /&gt;Load&lt;BR /&gt;UpdatedDate,&lt;BR /&gt;count(Phone) as Quantity,&lt;BR /&gt;'Phone' as Type&lt;BR /&gt;resident ElectricalDevices&lt;BR /&gt;group by UpdatedDate;&lt;/P&gt;&lt;P&gt;concatenate&lt;BR /&gt;Load&lt;BR /&gt;UpdatedDate,&lt;BR /&gt;count(Laptop) as Quantity,&lt;BR /&gt;'Laptop' as Type&lt;BR /&gt;resident ElectricalDevices&lt;BR /&gt;group by UpdatedDate;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Smile" src="http://community.qlik.com/emoticons/emotion-1.gif" /&gt;&lt;/P&gt;&lt;P&gt;Regards Luciano&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Mar 2010 18:08:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Transform-Table/m-p/184714#M49471</guid>
      <dc:creator />
      <dc:date>2010-03-17T18:08:54Z</dc:date>
    </item>
    <item>
      <title>Transform Table</title>
      <link>https://community.qlik.com/t5/QlikView/Transform-Table/m-p/184715#M49472</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Smile" src="http://community.qlik.com/emoticons/emotion-1.gif" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Mar 2010 18:15:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Transform-Table/m-p/184715#M49472</guid>
      <dc:creator />
      <dc:date>2010-03-17T18:15:10Z</dc:date>
    </item>
    <item>
      <title>Transform Table</title>
      <link>https://community.qlik.com/t5/QlikView/Transform-Table/m-p/184716#M49473</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have problems with the format of my answer. If you dont understand, send me an email, and I will send you the solution.&lt;/P&gt;&lt;P&gt;Mail: &lt;A href="mailto:luciano.nahuel.straface@comafi.com.ar"&gt;luciano.straface@comafi.com.ar&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Straface Luciano&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Mar 2010 18:18:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Transform-Table/m-p/184716#M49473</guid>
      <dc:creator />
      <dc:date>2010-03-17T18:18:50Z</dc:date>
    </item>
    <item>
      <title>Transform Table</title>
      <link>https://community.qlik.com/t5/QlikView/Transform-Table/m-p/184717#M49474</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thats an easy way with crosstable .. ;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;&lt;BR /&gt;&lt;BR /&gt;QUALIFY*;&lt;BR /&gt;UNQUALIFY ElectricalDevicesDateID;&lt;BR /&gt;crosstable (Type,Quantity,2)LOAD autonumber(UpdatedDate) as ElectricalDevicesDateID,&lt;BR /&gt; UpdatedDate,&lt;BR /&gt; PDA,&lt;BR /&gt; Blackberry,&lt;BR /&gt; Phone,&lt;BR /&gt;Laptop&lt;BR /&gt;FROM&lt;BR /&gt;..\INFOSEC\InfosecKPIs.xls&lt;BR /&gt;(biff, embedded labels, table is Sheet2$);&lt;BR /&gt;UNQUALIFY*;&lt;BR /&gt;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Mar 2010 21:28:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Transform-Table/m-p/184717#M49474</guid>
      <dc:creator />
      <dc:date>2010-03-17T21:28:14Z</dc:date>
    </item>
    <item>
      <title>Transform Table</title>
      <link>https://community.qlik.com/t5/QlikView/Transform-Table/m-p/184718#M49475</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Straface,&lt;/P&gt;&lt;P&gt;I have taken into account your answer that I will certainly used in a similar script. Nonetheless, I have found Onder's script more practicle and compaq. Thank you both very much for your support. I hope to be able to reciprocate uin the future.&lt;/P&gt;&lt;P&gt;Andrea&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Mar 2010 09:34:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Transform-Table/m-p/184718#M49475</guid>
      <dc:creator />
      <dc:date>2010-03-18T09:34:29Z</dc:date>
    </item>
  </channel>
</rss>

