<?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: Transposing in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Transposing/m-p/1515516#M40519</link>
    <description>&lt;P&gt;You could use the&amp;nbsp;&lt;A href="https://community.qlik.com/t5/Qlik-Design-Blog/The-Generic-Load/ba-p/1473470" target="_blank"&gt;The-Generic-Load&lt;/A&gt; but it's a quite heavy transformation and if your amounts of data are high it will need some time. Usually is your existing datastructure more suitable for the most scenarios - therefore try to rethink your approach and if you really need such transposing.&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;</description>
    <pubDate>Mon, 03 Dec 2018 12:20:59 GMT</pubDate>
    <dc:creator>marcus_sommer</dc:creator>
    <dc:date>2018-12-03T12:20:59Z</dc:date>
    <item>
      <title>Transposing</title>
      <link>https://community.qlik.com/t5/App-Development/Transposing/m-p/1515510#M40518</link>
      <description>&lt;P&gt;Hello Community,&lt;/P&gt;&lt;P&gt;Do you have any suggestion on below query.&lt;/P&gt;&lt;P&gt;I have data like,&lt;/P&gt;&lt;P&gt;Period,Sales&lt;/P&gt;&lt;P&gt;1,10&lt;/P&gt;&lt;P&gt;2,50&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And I want data like below throug script only,&lt;/P&gt;&lt;P&gt;Period1,Period2&lt;/P&gt;&lt;P&gt;10,50&lt;/P&gt;&lt;P&gt;I have done it through the loop but I am checking is there any other way without loop as loop is taking lot of time as volume is so high.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;-Priya&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 03 Dec 2018 12:13:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Transposing/m-p/1515510#M40518</guid>
      <dc:creator>priyarane</dc:creator>
      <dc:date>2018-12-03T12:13:46Z</dc:date>
    </item>
    <item>
      <title>Re: Transposing</title>
      <link>https://community.qlik.com/t5/App-Development/Transposing/m-p/1515516#M40519</link>
      <description>&lt;P&gt;You could use the&amp;nbsp;&lt;A href="https://community.qlik.com/t5/Qlik-Design-Blog/The-Generic-Load/ba-p/1473470" target="_blank"&gt;The-Generic-Load&lt;/A&gt; but it's a quite heavy transformation and if your amounts of data are high it will need some time. Usually is your existing datastructure more suitable for the most scenarios - therefore try to rethink your approach and if you really need such transposing.&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;</description>
      <pubDate>Mon, 03 Dec 2018 12:20:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Transposing/m-p/1515516#M40519</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2018-12-03T12:20:59Z</dc:date>
    </item>
    <item>
      <title>Re: Transposing</title>
      <link>https://community.qlik.com/t5/App-Development/Transposing/m-p/1515551#M40520</link>
      <description>&lt;DIV&gt;&lt;DIV&gt;Temp1:&lt;BR /&gt;LOAD Period,&lt;BR /&gt;&amp;nbsp; 'Period '&amp;amp;Period as PeriodName,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Sales&lt;BR /&gt;FROM&lt;BR /&gt;[C:\Users\public\Desktop\File.xlsx]&lt;BR /&gt;(ooxml, embedded labels, table is Sheet1);&lt;/DIV&gt;&lt;DIV&gt;Drop Field Period;&lt;BR /&gt;store Temp1 into File1.csv(txt);&lt;BR /&gt;Drop Table Temp1;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Final:&lt;BR /&gt;LOAD @1,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; @2&lt;BR /&gt;FROM&lt;BR /&gt;[D:\File1.xlsx]&lt;BR /&gt;(qvd, filters(&lt;BR /&gt;Transpose()&lt;BR /&gt;));&lt;/DIV&gt;&lt;DIV&gt;store Final into File2.csv(txt);&lt;/DIV&gt;&lt;DIV&gt;drop table Final;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Final2:&lt;BR /&gt;LOAD [Period 1],&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Period 2]&lt;BR /&gt;FROM&lt;BR /&gt;[D:\File2.csv]&lt;BR /&gt;(txt, utf8, embedded labels, delimiter is ',', msq, header is 1 lines);&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Mon, 03 Dec 2018 13:07:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Transposing/m-p/1515551#M40520</guid>
      <dc:creator>jerryyang756</dc:creator>
      <dc:date>2018-12-03T13:07:09Z</dc:date>
    </item>
  </channel>
</rss>

