<?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: Edit Script PIVOT Loaded Table in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Edit-Script-PIVOT-Loaded-Table/m-p/724170#M671012</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please write and explain better your idea or what you want to do?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if will be easier to us to help you&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank you&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Fernando&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 17 Sep 2014 17:45:41 GMT</pubDate>
    <dc:creator>fkeuroglian</dc:creator>
    <dc:date>2014-09-17T17:45:41Z</dc:date>
    <item>
      <title>Edit Script PIVOT Loaded Table</title>
      <link>https://community.qlik.com/t5/QlikView/Edit-Script-PIVOT-Loaded-Table/m-p/724168#M671009</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would like to transform a table that will be loaded in from SQL.&amp;nbsp; Is it possible to PIVOT this table in the 'Edit Script' statement, just like I would in SQL??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank You&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Sep 2014 17:13:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Edit-Script-PIVOT-Loaded-Table/m-p/724168#M671009</guid>
      <dc:creator />
      <dc:date>2014-09-17T17:13:00Z</dc:date>
    </item>
    <item>
      <title>Re: Edit Script PIVOT Loaded Table</title>
      <link>https://community.qlik.com/t5/QlikView/Edit-Script-PIVOT-Loaded-Table/m-p/724169#M671011</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;Could you post a sample doc to get a clear idea??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We can pivot using cross tables/generic loads in edit script!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kiru&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Sep 2014 17:17:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Edit-Script-PIVOT-Loaded-Table/m-p/724169#M671011</guid>
      <dc:creator />
      <dc:date>2014-09-17T17:17:41Z</dc:date>
    </item>
    <item>
      <title>Re: Edit Script PIVOT Loaded Table</title>
      <link>https://community.qlik.com/t5/QlikView/Edit-Script-PIVOT-Loaded-Table/m-p/724170#M671012</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please write and explain better your idea or what you want to do?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if will be easier to us to help you&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank you&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Fernando&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Sep 2014 17:45:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Edit-Script-PIVOT-Loaded-Table/m-p/724170#M671012</guid>
      <dc:creator>fkeuroglian</dc:creator>
      <dc:date>2014-09-17T17:45:41Z</dc:date>
    </item>
    <item>
      <title>Re: Edit Script PIVOT Loaded Table</title>
      <link>https://community.qlik.com/t5/QlikView/Edit-Script-PIVOT-Loaded-Table/m-p/724171#M671013</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So in this example it would be UNPIVOTing data.&amp;nbsp; Here &lt;SPAN style="font-size: 13.63636302948px;"&gt;tblRpt_US_CDFBP_SalesEffectiveness_MonthlyTrends has a column for M1, another columns for M2, and so on...and here i am JOINing on the 'Label' column in &lt;SPAN style="font-size: 13.63636302948px;"&gt;tblCfgDynamicLabels &lt;/SPAN&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT &lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;various columns&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&amp;nbsp; FROM &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; ( SELECT * FROM tblRpt_US_CDFBP_SalesEffectiveness_MonthlyTrends WITH&lt;/P&gt;&lt;P&gt; &lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&amp;nbsp; ) p &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; UNPIVOT &lt;/P&gt;&lt;P&gt;&amp;nbsp; (y FOR numDay IN (M1, M2, M3, M4, M5, M6, M7, M8, M9, M10, M11, M12) )unpvt &lt;/P&gt;&lt;P&gt;&amp;nbsp; INNER JOIN &lt;/P&gt;&lt;P&gt;&amp;nbsp; --select * from&lt;/P&gt;&lt;P&gt;&amp;nbsp; tblCfgDynamicLabels lbl&lt;/P&gt;&lt;P&gt;&amp;nbsp; ON unpvt.numDay = lbl.Label&lt;/P&gt;&lt;P&gt;&amp;nbsp; ORDER BY&amp;nbsp; &lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;categoryorder DESC&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope that this is helpful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Sep 2014 18:11:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Edit-Script-PIVOT-Loaded-Table/m-p/724171#M671013</guid>
      <dc:creator />
      <dc:date>2014-09-17T18:11:22Z</dc:date>
    </item>
  </channel>
</rss>

