<?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: Transpose rowwise data into columnwise data in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Transpose-rowwise-data-into-columnwise-data/m-p/1661313#M728640</link>
    <description>&lt;P&gt;Hai Alex00321 , have tried this out and it does work, bumped into another problem that currently stops me from using it , but this is an issue with the data rather then this solution : finding the unqiue key (concatenation of various dimensions) field in order to prevent unwanted duplicates , but that's to be fixed at the data source first. So I think I will be able to proceed with this . &lt;SPAN&gt;Thanks for the fine support.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;PS.&amp;nbsp; For a novice like me it is not that easy readable, but have been playing with some parameters and understand what it does.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 30 Dec 2019 07:49:26 GMT</pubDate>
    <dc:creator>HWallays</dc:creator>
    <dc:date>2019-12-30T07:49:26Z</dc:date>
    <item>
      <title>Transpose rowwise data into columnwise data</title>
      <link>https://community.qlik.com/t5/QlikView/Transpose-rowwise-data-into-columnwise-data/m-p/1660374#M728636</link>
      <description>&lt;P&gt;Is there an easy way to transpose data (during import or from resident tables ) from rowwise orientation into columnwise orientation&amp;nbsp;? I &amp;nbsp;mean going from input like below&lt;/P&gt;&lt;P&gt;&lt;U&gt;Dimensions in the table : Agency, Year, Revenue&lt;/U&gt;&lt;/P&gt;&lt;P&gt;data line 1 : Ag1 , 1980, 10000&lt;/P&gt;&lt;P&gt;date line 2 : Ag1, 1981, 12000&lt;/P&gt;&lt;P&gt;&amp;nbsp;To&lt;/P&gt;&lt;P&gt;&lt;U&gt;Dimensions in the table : Agency, Revenue1980, Revenu1981&amp;nbsp;&amp;nbsp;&lt;/U&gt;&lt;/P&gt;&lt;P&gt;data line :&amp;nbsp; Ag, 10000, 12000&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Reason why I want this is because I need to calculate delta's over the years and with rowwise that's not an easy option if you have quite a number of years to cover … &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I know the opposite is possible (from columns to rows) but is the inverse also possible ?&lt;/P&gt;&lt;P&gt;Any suggestions/possibilities ?&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 19:24:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Transpose-rowwise-data-into-columnwise-data/m-p/1660374#M728636</guid>
      <dc:creator>HWallays</dc:creator>
      <dc:date>2024-11-16T19:24:03Z</dc:date>
    </item>
    <item>
      <title>Re: Transpose rowwise data into columnwise data</title>
      <link>https://community.qlik.com/t5/QlikView/Transpose-rowwise-data-into-columnwise-data/m-p/1660395#M728637</link>
      <description>&lt;P&gt;Try to solve your question in Script:&lt;/P&gt;&lt;P&gt;tblTest:&lt;BR /&gt;LOAD * Inline[&lt;BR /&gt;Agency, Year, Revenue&lt;/P&gt;&lt;P&gt;Ag1, 1980, 10000&lt;BR /&gt;Ag2, 1981, 12000&lt;BR /&gt;Ag3, 1982, 13000&lt;BR /&gt;Ag4, 1983, 14000&lt;BR /&gt;];&lt;/P&gt;&lt;P&gt;tblFinal:&lt;BR /&gt;LOAD distinct Agency&lt;BR /&gt;Resident tblTest;&lt;/P&gt;&lt;P&gt;FOR i=1 to FieldValueCount('Year')&lt;BR /&gt;LET vField=FieldValue('Year',$(i));&lt;/P&gt;&lt;P&gt;Left Join(tblFinal)&lt;BR /&gt;LOAD Agency, Revenue as [Revenue $(vField)]&lt;BR /&gt;Resident tblTest Where Year=$(vField);&lt;BR /&gt;NEXT i;&lt;/P&gt;&lt;P&gt;DROP Table tblTest;&lt;/P&gt;</description>
      <pubDate>Tue, 24 Dec 2019 08:54:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Transpose-rowwise-data-into-columnwise-data/m-p/1660395#M728637</guid>
      <dc:creator>alex00321</dc:creator>
      <dc:date>2019-12-24T08:54:09Z</dc:date>
    </item>
    <item>
      <title>Re: Transpose rowwise data into columnwise data</title>
      <link>https://community.qlik.com/t5/QlikView/Transpose-rowwise-data-into-columnwise-data/m-p/1660838#M728638</link>
      <description>&lt;P&gt;Check out the following Design Blog link:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.qlik.com/t5/Qlik-Design-Blog/The-Crosstable-Load/ba-p/1468083" target="_blank"&gt;https://community.qlik.com/t5/Qlik-Design-Blog/The-Crosstable-Load/ba-p/1468083&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Here is the base URL in case you want to do further searching on your own:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.qlik.com/t5/Qlik-Design-Blog/bg-p/qlik-design-blog" target="_blank"&gt;https://community.qlik.com/t5/Qlik-Design-Blog/bg-p/qlik-design-blog&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Regards,&lt;BR /&gt;Brett&lt;/P&gt;</description>
      <pubDate>Thu, 26 Dec 2019 16:33:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Transpose-rowwise-data-into-columnwise-data/m-p/1660838#M728638</guid>
      <dc:creator>Brett_Bleess</dc:creator>
      <dc:date>2019-12-26T16:33:23Z</dc:date>
    </item>
    <item>
      <title>Re: Transpose rowwise data into columnwise data</title>
      <link>https://community.qlik.com/t5/QlikView/Transpose-rowwise-data-into-columnwise-data/m-p/1661308#M728639</link>
      <description>&lt;P&gt;Hai BrettBlees, thanks for your link. What I want / need to do is actually the inverse of the crosstable function &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But I will keep the crosstable function in mind too for other things I have in my mind to setup . It seems quite handy indeed.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 30 Dec 2019 07:43:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Transpose-rowwise-data-into-columnwise-data/m-p/1661308#M728639</guid>
      <dc:creator>HWallays</dc:creator>
      <dc:date>2019-12-30T07:43:07Z</dc:date>
    </item>
    <item>
      <title>Re: Transpose rowwise data into columnwise data</title>
      <link>https://community.qlik.com/t5/QlikView/Transpose-rowwise-data-into-columnwise-data/m-p/1661313#M728640</link>
      <description>&lt;P&gt;Hai Alex00321 , have tried this out and it does work, bumped into another problem that currently stops me from using it , but this is an issue with the data rather then this solution : finding the unqiue key (concatenation of various dimensions) field in order to prevent unwanted duplicates , but that's to be fixed at the data source first. So I think I will be able to proceed with this . &lt;SPAN&gt;Thanks for the fine support.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;PS.&amp;nbsp; For a novice like me it is not that easy readable, but have been playing with some parameters and understand what it does.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 30 Dec 2019 07:49:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Transpose-rowwise-data-into-columnwise-data/m-p/1661313#M728640</guid>
      <dc:creator>HWallays</dc:creator>
      <dc:date>2019-12-30T07:49:26Z</dc:date>
    </item>
    <item>
      <title>Re: Transpose rowwise data into columnwise data</title>
      <link>https://community.qlik.com/t5/QlikView/Transpose-rowwise-data-into-columnwise-data/m-p/1661344#M728641</link>
      <description>&lt;P&gt;Hi to solve the problem, I also try to use Python and VBA to deal with data firstly. I think you could separate the process which is dealing with data firstly with the tool you are familiar with, then handle that in Qlik.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Mon, 30 Dec 2019 09:02:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Transpose-rowwise-data-into-columnwise-data/m-p/1661344#M728641</guid>
      <dc:creator>alex00321</dc:creator>
      <dc:date>2019-12-30T09:02:43Z</dc:date>
    </item>
  </channel>
</rss>

