<?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 Need Help - Create dynamic columns &amp; rows in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Need-Help-Create-dynamic-columns-rows/m-p/448064#M560792</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have requirement to convert the data from Table 1 to Table 2 in QV 11 SR1&amp;nbsp; as shown in screenshot, number of Rows in Table 1&amp;nbsp; is dynamic, means column creation of Table 2 in qlikview witll be dynamic as well.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="38224" class="jive-image-thumbnail jive-image" onclick="" alt="Transpose_Dynamic.png" src="https://community.qlik.com/legacyfs/online/38224_Transpose_Dynamic.png" width="450" /&gt;&lt;/P&gt;&lt;P&gt;I am really new in Qlikview and will appreciate any guidance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Pooja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 12 Apr 2013 07:00:16 GMT</pubDate>
    <dc:creator />
    <dc:date>2013-04-12T07:00:16Z</dc:date>
    <item>
      <title>Need Help - Create dynamic columns &amp; rows</title>
      <link>https://community.qlik.com/t5/QlikView/Need-Help-Create-dynamic-columns-rows/m-p/448064#M560792</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have requirement to convert the data from Table 1 to Table 2 in QV 11 SR1&amp;nbsp; as shown in screenshot, number of Rows in Table 1&amp;nbsp; is dynamic, means column creation of Table 2 in qlikview witll be dynamic as well.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="38224" class="jive-image-thumbnail jive-image" onclick="" alt="Transpose_Dynamic.png" src="https://community.qlik.com/legacyfs/online/38224_Transpose_Dynamic.png" width="450" /&gt;&lt;/P&gt;&lt;P&gt;I am really new in Qlikview and will appreciate any guidance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Pooja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Apr 2013 07:00:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Need-Help-Create-dynamic-columns-rows/m-p/448064#M560792</guid>
      <dc:creator />
      <dc:date>2013-04-12T07:00:16Z</dc:date>
    </item>
    <item>
      <title>Re: Need Help - Create dynamic columns &amp; rows</title>
      <link>https://community.qlik.com/t5/QlikView/Need-Help-Create-dynamic-columns-rows/m-p/448065#M560793</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Any inputs please ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Apr 2013 16:35:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Need-Help-Create-dynamic-columns-rows/m-p/448065#M560793</guid>
      <dc:creator />
      <dc:date>2013-04-12T16:35:48Z</dc:date>
    </item>
    <item>
      <title>Re: Need Help - Create dynamic columns &amp; rows</title>
      <link>https://community.qlik.com/t5/QlikView/Need-Help-Create-dynamic-columns-rows/m-p/448066#M560794</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It's a very bad idea and I have no idea why you would ever want to do that, but this should do what you want:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;T2:&lt;/P&gt;&lt;P&gt;load RowNo() as id, * inline [&lt;/P&gt;&lt;P&gt;Name, Value&lt;/P&gt;&lt;P&gt;Chipset,Chip 1&lt;/P&gt;&lt;P&gt;Chipset,Chip 2&lt;/P&gt;&lt;P&gt;Chipset,Chip 3&lt;/P&gt;&lt;P&gt;Modem,Mod 1&lt;/P&gt;&lt;P&gt;Modem,Mod 2&lt;/P&gt;&lt;P&gt;Wireless,Wir 1&lt;/P&gt;&lt;P&gt;Wireless,Wir 2&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;T3:&lt;/P&gt;&lt;P&gt;load RowNo() as id, Value as Chipset&lt;/P&gt;&lt;P&gt;Resident T2 where Name = 'Chipset';&lt;/P&gt;&lt;P&gt;join(T3)&lt;/P&gt;&lt;P&gt;load RowNo() as id, Value as Modem&lt;/P&gt;&lt;P&gt;Resident T2 where Name = 'Modem';&lt;/P&gt;&lt;P&gt;join(T3)&lt;/P&gt;&lt;P&gt;load RowNo() as id, Value as Wireless&lt;/P&gt;&lt;P&gt;Resident T2 where Name = 'Wireless';&lt;/P&gt;&lt;P&gt;drop field id;&lt;/P&gt;&lt;P&gt;drop table T2;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can replace the inline load with a load statements that load your Table 1 data.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Apr 2013 18:17:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Need-Help-Create-dynamic-columns-rows/m-p/448066#M560794</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2013-04-12T18:17:30Z</dc:date>
    </item>
    <item>
      <title>Re: Need Help - Create dynamic columns &amp; rows</title>
      <link>https://community.qlik.com/t5/QlikView/Need-Help-Create-dynamic-columns-rows/m-p/448067#M560795</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Gysbert for your response. It will work , if the Name field value are constant.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Solution of this problem become much simpler with&amp;nbsp; the updatde requirements.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Was able to achieve it by using Pivot Table , Name as Dimension &amp;amp; value as expression.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Apr 2013 19:03:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Need-Help-Create-dynamic-columns-rows/m-p/448067#M560795</guid>
      <dc:creator />
      <dc:date>2013-04-15T19:03:42Z</dc:date>
    </item>
    <item>
      <title>Re: Need Help - Create dynamic columns &amp; rows</title>
      <link>https://community.qlik.com/t5/QlikView/Need-Help-Create-dynamic-columns-rows/m-p/448068#M560796</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;A _jive_internal="true" class="jiveTT-hover-user jive-username-link" href="https://community.qlik.com/people/poojasaxena" id="jive-9728219512007981475257" style="background-color: #ffffff; font-size: 12px; color: #007fc0; font-weight: bold; font-family: Arial; text-align: center;"&gt;poojasaxena&lt;/A&gt;,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've had a problem similar with yours about creating fields dynamically and I solved it using the code of the attached file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Apr 2013 17:24:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Need-Help-Create-dynamic-columns-rows/m-p/448068#M560796</guid>
      <dc:creator>jeffmartins</dc:creator>
      <dc:date>2013-04-16T17:24:40Z</dc:date>
    </item>
  </channel>
</rss>

