<?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: How to convert column into row in qlikview sql ? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-convert-column-into-row-in-qlikview-sql/m-p/723387#M1086836</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can specify an order by clause in the generic load, try like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GenTables:&lt;/P&gt;&lt;P&gt;Generic LOAD KeyField, Attribute, Value&lt;/P&gt;&lt;P&gt;Resident T_Input&lt;/P&gt;&lt;P&gt;Order By Attribute desc;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, the order of fields in a table is not that important as you can manipulate this within your objects, charts and expressions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Well, hope that helps anyways.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 23 Jun 2014 01:15:01 GMT</pubDate>
    <dc:creator />
    <dc:date>2014-06-23T01:15:01Z</dc:date>
    <item>
      <title>How to convert column into row in qlikview sql ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-convert-column-into-row-in-qlikview-sql/m-p/723380#M1086816</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;HI,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am new to qlikview.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i would like to convert column&amp;nbsp; data into row.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;example :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Field Key&lt;/P&gt;&lt;P&gt;100&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&lt;/P&gt;&lt;P&gt;200&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2&lt;/P&gt;&lt;P&gt;300&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 3&lt;/P&gt;&lt;P&gt;400&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 4&lt;/P&gt;&lt;P&gt;500&amp;nbsp;&amp;nbsp; 5&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;output :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 3&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 4&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 5&lt;/P&gt;&lt;P&gt;100&amp;nbsp;&amp;nbsp;&amp;nbsp; 200&amp;nbsp;&amp;nbsp;&amp;nbsp; 300&amp;nbsp;&amp;nbsp; 400&amp;nbsp;&amp;nbsp; 500&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can someone please help me ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 21 Jun 2014 23:35:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-convert-column-into-row-in-qlikview-sql/m-p/723380#M1086816</guid>
      <dc:creator />
      <dc:date>2014-06-21T23:35:49Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert column into row in qlikview sql ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-convert-column-into-row-in-qlikview-sql/m-p/723381#M1086820</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;You can do this within the script using the generic load.&lt;/P&gt;&lt;P&gt;Check below example, but since it requires 3 parameters, I've added a KeyField to consider the whole data as one group (if you want you can drop it at the end).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;T_Input:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;LOAD 'static group' as KeyField, Key as Attribute, Field as Value Inline [&lt;/P&gt;&lt;P&gt;Field, Key&lt;/P&gt;&lt;P&gt;100, 1&lt;/P&gt;&lt;P&gt;200, 2&lt;/P&gt;&lt;P&gt;300, 3&lt;/P&gt;&lt;P&gt;400, 4&lt;/P&gt;&lt;P&gt;500, 5&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GenTables:&lt;/P&gt;&lt;P&gt;Generic LOAD KeyField, Attribute, Value&lt;/P&gt;&lt;P&gt;Resident T_Input;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FinalTable:&lt;/P&gt;&lt;P&gt;LOAD Distinct KeyField Resident T_Input;&lt;/P&gt;&lt;P&gt;DROP Table T_Input;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for i = NoOfTables()-1 to 0 step -1&lt;/P&gt;&lt;P&gt;&amp;nbsp; let vTable = TableName($(i));&lt;/P&gt;&lt;P&gt;&amp;nbsp; if Left('$(vTable)', 10) = 'GenTables.' then&lt;/P&gt;&lt;P&gt;&amp;nbsp; left join (FinalTable)&lt;/P&gt;&lt;P&gt;&amp;nbsp; LOAD * Resident [$(vTable)];&lt;/P&gt;&lt;P&gt;&amp;nbsp; DROP Table [$(vTable)];&lt;/P&gt;&lt;P&gt;&amp;nbsp; end if&lt;/P&gt;&lt;P&gt;next&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 22 Jun 2014 02:04:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-convert-column-into-row-in-qlikview-sql/m-p/723381#M1086820</guid>
      <dc:creator />
      <dc:date>2014-06-22T02:04:43Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert column into row in qlikview sql ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-convert-column-into-row-in-qlikview-sql/m-p/723382#M1086823</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;thanks for reply.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i am not able to understand belfor loop next part.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can you please explain ?.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 22 Jun 2014 02:34:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-convert-column-into-row-in-qlikview-sql/m-p/723382#M1086823</guid>
      <dc:creator />
      <dc:date>2014-06-22T02:34:08Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert column into row in qlikview sql ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-convert-column-into-row-in-qlikview-sql/m-p/723383#M1086825</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok, after using the generic transformation, a number of tables is created.&lt;/P&gt;&lt;P&gt;Each one will be labeled as "GenTables.Attribute" (GenTables.1, GenTables.2, etc.) and will contain 2 fields, the KeyField and the Attribute.&lt;/P&gt;&lt;P&gt;The attribute (1, 2, 3, 4, 5) will have its corresponding value (100, 200, 300, 400, 500).&lt;/P&gt;&lt;P&gt;To visually understand what is happening in the generic load, add an "exit script" statement before the for loop part, reload your app and go to table viewer (ctrl+T).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The for... next part will be looping through these tables in the model to create one final table containing the KeyField and all the attributes.&lt;/P&gt;&lt;P&gt;The loop is done going backwards from total number of tables in model (NoOfTables()) to 0, to always give a correct table index to the TableName function (because after joining the attribute to the final table, we won't need the attribute table anymore so we drop it).&lt;/P&gt;&lt;P&gt;Your model may already contain other tables before applying this part, so we make sure to work on the tables created by the generic load, by checking if the table name contains the label assigned to them (here it is GenTables).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope that this clarifies how the process is executing.&lt;/P&gt;&lt;P&gt;I also suggest you check out this link: &lt;A _jive_internal="true" href="https://community.qlik.com/blogs/qlikviewdesignblog/2014/03/31/generic" title="http://community.qlik.com/blogs/qlikviewdesignblog/2014/03/31/generic"&gt;http://community.qlik.com/blogs/qlikviewdesignblog/2014/03/31/generic&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 22 Jun 2014 03:32:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-convert-column-into-row-in-qlikview-sql/m-p/723383#M1086825</guid>
      <dc:creator />
      <dc:date>2014-06-22T03:32:32Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert column into row in qlikview sql ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-convert-column-into-row-in-qlikview-sql/m-p/723384#M1086828</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Probably you can attempt to do that using "Transformation step". Hope this will be helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have added your data into excel and used the transformation step..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Data in Excel:&lt;/STRONG&gt;&lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" width="99"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD class="xl63" height="20" width="35"&gt;Field&lt;/TD&gt;&lt;TD width="64"&gt;Key&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl63" height="20" width="35"&gt;100&lt;/TD&gt;&lt;TD align="right"&gt;1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl63" height="20" width="35"&gt;200&lt;/TD&gt;&lt;TD align="right"&gt;2&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl63" height="20" width="35"&gt;300&lt;/TD&gt;&lt;TD align="right"&gt;3&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl63" height="20" width="35"&gt;400&lt;/TD&gt;&lt;TD align="right"&gt;4&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl63" height="20" width="35"&gt;500&lt;/TD&gt;&lt;TD align="right"&gt;5&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;STRONG&gt;Script:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;LOAD Key, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [1.000000], &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [2.000000], &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [3.000000], &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [4.000000], &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [5.000000]&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;C:\Users\ip1858\Desktop\Test.xlsx&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is Sheet1, filters(&lt;/P&gt;&lt;P&gt;Rotate(left)&lt;/P&gt;&lt;P&gt;));&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers...Phani&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 22 Jun 2014 04:15:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-convert-column-into-row-in-qlikview-sql/m-p/723384#M1086828</guid>
      <dc:creator>phaneendra_kunc</dc:creator>
      <dc:date>2014-06-22T04:15:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert column into row in qlikview sql ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-convert-column-into-row-in-qlikview-sql/m-p/723385#M1086830</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Phani,&lt;/P&gt;&lt;P&gt;thanks for your reply.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to rotate/transpose date from Other table - Resident Table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;does this below posible ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;Key,filed Resident mytable (Rotate(left));&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;something like above ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 22 Jun 2014 16:51:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-convert-column-into-row-in-qlikview-sql/m-p/723385#M1086830</guid>
      <dc:creator />
      <dc:date>2014-06-22T16:51:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert column into row in qlikview sql ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-convert-column-into-row-in-qlikview-sql/m-p/723386#M1086833</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your reply.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It's really very helpful and it seems to be working fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am getting below results.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;5&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 4&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 3&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&lt;BR /&gt;500&amp;nbsp; 400 300 200 100&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would like to get below results.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2&amp;nbsp;&amp;nbsp;&amp;nbsp; 3&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 4&amp;nbsp;&amp;nbsp;&amp;nbsp; 5&lt;/P&gt;&lt;P&gt;100 200 300 400 500&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can we change the order ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jun 2014 00:56:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-convert-column-into-row-in-qlikview-sql/m-p/723386#M1086833</guid>
      <dc:creator />
      <dc:date>2014-06-23T00:56:26Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert column into row in qlikview sql ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-convert-column-into-row-in-qlikview-sql/m-p/723387#M1086836</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can specify an order by clause in the generic load, try like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GenTables:&lt;/P&gt;&lt;P&gt;Generic LOAD KeyField, Attribute, Value&lt;/P&gt;&lt;P&gt;Resident T_Input&lt;/P&gt;&lt;P&gt;Order By Attribute desc;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, the order of fields in a table is not that important as you can manipulate this within your objects, charts and expressions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Well, hope that helps anyways.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jun 2014 01:15:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-convert-column-into-row-in-qlikview-sql/m-p/723387#M1086836</guid>
      <dc:creator />
      <dc:date>2014-06-23T01:15:01Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert column into row in qlikview sql ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-convert-column-into-row-in-qlikview-sql/m-p/723388#M1086837</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks for your reply.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i am new to qlikview.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can you please assist me,&lt;/P&gt;&lt;P&gt;what change should i make in for Loop&lt;/P&gt;&lt;P&gt;to get column in above order ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jun 2014 02:10:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-convert-column-into-row-in-qlikview-sql/m-p/723388#M1086837</guid>
      <dc:creator />
      <dc:date>2014-06-23T02:10:08Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert column into row in qlikview sql ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-convert-column-into-row-in-qlikview-sql/m-p/723389#M1086838</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There's no need to change anything in the for loop.&lt;/P&gt;&lt;P&gt;Just check again my previous reply, and add the "order by Attribute desc" into the generic load part.&lt;/P&gt;&lt;P&gt;The columns will then be ordered the way you want it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jun 2014 04:42:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-convert-column-into-row-in-qlikview-sql/m-p/723389#M1086838</guid>
      <dc:creator />
      <dc:date>2014-06-23T04:42:01Z</dc:date>
    </item>
    <item>
      <title>Re: Re: How to convert column into row in qlikview sql ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-convert-column-into-row-in-qlikview-sql/m-p/723390#M1086839</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is all done by Transformation step..There is more option available to modify the table..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="1.png" class="jive-image" height="302" src="https://community.qlik.com/legacyfs/online/60963_1.png" style="width: 397px; height: 302.232px;" width="397" /&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="5.png" class="jive-image" height="296" src="https://community.qlik.com/legacyfs/online/60964_5.png" style="width: 397px; height: 295.829px;" width="397" /&gt;&lt;/P&gt;&lt;P&gt;after clicking next there is a option of cross table which allow you to transform row to column.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jun 2014 04:59:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-convert-column-into-row-in-qlikview-sql/m-p/723390#M1086839</guid>
      <dc:creator />
      <dc:date>2014-06-23T04:59:00Z</dc:date>
    </item>
  </channel>
</rss>

