<?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 Qlikview Transpose ( Excel to Excel ) using LOAD Script  / CrossTable in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Qlikview-Transpose-Excel-to-Excel-using-LOAD-Script-CrossTable/m-p/1684941#M593430</link>
    <description>&lt;P&gt;HI Gurus,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please help me to get the Solution as given in the Excel sheet.&lt;/P&gt;&lt;P&gt;I have provided the requirement sheet and also output format sheet.&lt;/P&gt;&lt;P&gt;Requirement:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Req.png" style="width: 782px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/30085i5ACD3042D5DBEA76/image-size/large?v=v2&amp;amp;px=999" role="button" title="Req.png" alt="Req.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please suggest the solution to achieve this.&lt;/P&gt;&lt;P&gt;Output Should be like this:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="OutPut_Format.png" style="width: 653px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/30087i430B9C43A382DA72/image-size/large?v=v2&amp;amp;px=999" role="button" title="OutPut_Format.png" alt="OutPut_Format.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot.&lt;/P&gt;&lt;P&gt;LK Vepuri&lt;/P&gt;</description>
    <pubDate>Sat, 16 Nov 2024 01:02:58 GMT</pubDate>
    <dc:creator>lakshmanvepuri</dc:creator>
    <dc:date>2024-11-16T01:02:58Z</dc:date>
    <item>
      <title>Qlikview Transpose ( Excel to Excel ) using LOAD Script  / CrossTable</title>
      <link>https://community.qlik.com/t5/QlikView/Qlikview-Transpose-Excel-to-Excel-using-LOAD-Script-CrossTable/m-p/1684941#M593430</link>
      <description>&lt;P&gt;HI Gurus,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please help me to get the Solution as given in the Excel sheet.&lt;/P&gt;&lt;P&gt;I have provided the requirement sheet and also output format sheet.&lt;/P&gt;&lt;P&gt;Requirement:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Req.png" style="width: 782px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/30085i5ACD3042D5DBEA76/image-size/large?v=v2&amp;amp;px=999" role="button" title="Req.png" alt="Req.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please suggest the solution to achieve this.&lt;/P&gt;&lt;P&gt;Output Should be like this:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="OutPut_Format.png" style="width: 653px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/30087i430B9C43A382DA72/image-size/large?v=v2&amp;amp;px=999" role="button" title="OutPut_Format.png" alt="OutPut_Format.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot.&lt;/P&gt;&lt;P&gt;LK Vepuri&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 01:02:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlikview-Transpose-Excel-to-Excel-using-LOAD-Script-CrossTable/m-p/1684941#M593430</guid>
      <dc:creator>lakshmanvepuri</dc:creator>
      <dc:date>2024-11-16T01:02:58Z</dc:date>
    </item>
    <item>
      <title>Re: Qlikview Transpose ( Excel to Excel ) using LOAD Script  / CrossTable</title>
      <link>https://community.qlik.com/t5/QlikView/Qlikview-Transpose-Excel-to-Excel-using-LOAD-Script-CrossTable/m-p/1684964#M593431</link>
      <description>&lt;P&gt;Something like this&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Table:
CrossTable(Field, tmpValue)
LOAD 1 as RowNum,
	 Concat(E, '|') as E, 
     Concat(F, '|') as F, 
     Concat(G, '|') as G, 
     Concat(H, '|') as H, 
     Concat(I, '|') as I, 
     Concat(J, '|') as J
FROM
[C:\Users\talwars\Downloads\Requirement (1).xlsx]
(ooxml, no labels, table is Requirement)
Where RecNo() &amp;lt;= 2;

MainTable:
CrossTable(Field, Value, 3)
LOAD B as Country, 
     C as State, 
     D as TELCO, 
     E, 
     F, 
     G, 
     H, 
     I, 
     J
FROM
[C:\Users\talwars\Downloads\Requirement (1).xlsx]
(ooxml, no labels, header is 2 lines, table is Requirement);

Left Join (MainTable)
LOAD Field,
	 SubField(tmpValue, '|', 1) as MONTH,
	 SubField(tmpValue, '|', 2) as TYPE
Resident Table;

DROP Table Table;
DROP Field Field;&lt;/LI-CODE&gt;</description>
      <pubDate>Mon, 16 Mar 2020 12:09:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlikview-Transpose-Excel-to-Excel-using-LOAD-Script-CrossTable/m-p/1684964#M593431</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2020-03-16T12:09:37Z</dc:date>
    </item>
    <item>
      <title>Re: Qlikview Transpose ( Excel to Excel ) using LOAD Script  / CrossTable</title>
      <link>https://community.qlik.com/t5/QlikView/Qlikview-Transpose-Excel-to-Excel-using-LOAD-Script-CrossTable/m-p/1684977#M593432</link>
      <description>&lt;P&gt;Hi Sunny&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you very much for the quick response and providing the solution.&lt;/P&gt;&lt;P&gt;But one question...&amp;nbsp; The Month data is not fixed and keep on increasing..&lt;/P&gt;&lt;DIV class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;Please help to update the QVW file here so it will be easier to enhance.. Thank You once again,&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Enhanced.png" style="width: 999px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/30098iDE633D088D72A05B/image-size/large?v=v2&amp;amp;px=999" role="button" title="Enhanced.png" alt="Enhanced.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Mon, 16 Mar 2020 12:42:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlikview-Transpose-Excel-to-Excel-using-LOAD-Script-CrossTable/m-p/1684977#M593432</guid>
      <dc:creator>lakshmanvepuri</dc:creator>
      <dc:date>2020-03-16T12:42:56Z</dc:date>
    </item>
    <item>
      <title>Re: Qlikview Transpose ( Excel to Excel ) using LOAD Script  / CrossTable</title>
      <link>https://community.qlik.com/t5/QlikView/Qlikview-Transpose-Excel-to-Excel-using-LOAD-Script-CrossTable/m-p/1684991#M593433</link>
      <description>&lt;P&gt;Try this&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Table:
CrossTable (Field, Field2, 3)
LOAD *
FROM
[C:\Users\talwars\Downloads\Requirement (1).xlsx]
(ooxml, no labels, table is Requirement)
Where RecNo() &amp;lt;= 2;

Table2:
LOAD Field,
	 Concat(Field2, '|') as tmpValue
Resident Table
Group By Field;

DROP Table Table;
RENAME Table Table2 to Table;

MainTable:
CrossTable(Field, Value, 3)
LOAD B as Country, 
     C as State, 
     D as TELCO, 
     E, 
     F, 
     G, 
     H, 
     I, 
     J
FROM
[C:\Users\talwars\Downloads\Requirement (1).xlsx]
(ooxml, no labels, header is 2 lines, table is Requirement);

Left Join (MainTable)
LOAD Field,
	 SubField(tmpValue, '|', 1) as MONTH,
	 SubField(tmpValue, '|', 2) as TYPE
Resident Table;

DROP Table Table;
DROP Field Field;&lt;/LI-CODE&gt;</description>
      <pubDate>Mon, 16 Mar 2020 13:22:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlikview-Transpose-Excel-to-Excel-using-LOAD-Script-CrossTable/m-p/1684991#M593433</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2020-03-16T13:22:37Z</dc:date>
    </item>
    <item>
      <title>Re: Qlikview Transpose ( Excel to Excel ) using LOAD Script  / CrossTable</title>
      <link>https://community.qlik.com/t5/QlikView/Qlikview-Transpose-Excel-to-Excel-using-LOAD-Script-CrossTable/m-p/1685064#M593434</link>
      <description>&lt;P&gt;Try This:&lt;/P&gt;&lt;P&gt;Temp1:&lt;/P&gt;&lt;P&gt;CrossTable (Type,Val,3) LOAD&lt;BR /&gt;//Recno() as Num,&lt;BR /&gt;Country,&lt;BR /&gt;State,&lt;BR /&gt;TELCO,&lt;BR /&gt;Qty,&lt;BR /&gt;"Rev($KK)",&lt;BR /&gt;Qty1,&lt;BR /&gt;"Rev($KK)1",&lt;BR /&gt;Qty2,&lt;BR /&gt;"Rev($KK)2"&lt;BR /&gt;FROM &amp;lt;&amp;lt;Table Name&amp;gt;&amp;gt;&lt;BR /&gt;(ooxml, embedded labels, header is 1 lines, table is Requirement);&lt;/P&gt;&lt;P&gt;//Drop Field Dummy from Temp1;&lt;BR /&gt;Temp2:&lt;BR /&gt;Load *,&lt;BR /&gt;Recno() as Num,&lt;BR /&gt;If (WildMatch(Type,'Qty*'),'Qty',&lt;BR /&gt;If (WildMatch(Type,'Rev($KK)*'),'Rev($KK)','na')) as Test&lt;BR /&gt;Resident Temp1;&lt;BR /&gt;Drop Table Temp1;&lt;/P&gt;&lt;P&gt;drop field Type;&lt;BR /&gt;Rename Field Test to Type;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Temp3:&lt;BR /&gt;CrossTable (ColID,ColDesc,1)&lt;BR /&gt;LOAD&lt;BR /&gt;ROWNO() as chk,&lt;BR /&gt;"E",&lt;BR /&gt;F,&lt;BR /&gt;G,&lt;BR /&gt;H,&lt;BR /&gt;"I",&lt;BR /&gt;J&lt;BR /&gt;FROM &amp;lt;&amp;lt;Table Name&amp;gt;&amp;gt;&lt;BR /&gt;(ooxml, no labels, table is Requirement)&lt;BR /&gt;where recno()=1;&lt;/P&gt;&lt;P&gt;Fin:&lt;/P&gt;&lt;P&gt;Load Distinct ColDesc&lt;BR /&gt;Resident Temp3;&lt;BR /&gt;Drop Table Temp3;&lt;BR /&gt;Join(Fin)&lt;BR /&gt;Load Country , State, TELCO ,Type Resident Temp2;&lt;/P&gt;&lt;P&gt;Fin2:&lt;BR /&gt;Load&lt;BR /&gt;RowNo() as Num,&lt;BR /&gt;ColDesc&lt;BR /&gt;Resident Fin;&lt;BR /&gt;drop table Fin;&lt;BR /&gt;Inner join(Fin2)&lt;BR /&gt;Load *&lt;BR /&gt;&lt;BR /&gt;Resident Temp2;&lt;/P&gt;&lt;P&gt;drop table Temp2;&lt;/P&gt;</description>
      <pubDate>Mon, 16 Mar 2020 16:11:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlikview-Transpose-Excel-to-Excel-using-LOAD-Script-CrossTable/m-p/1685064#M593434</guid>
      <dc:creator>anushree1</dc:creator>
      <dc:date>2020-03-16T16:11:01Z</dc:date>
    </item>
  </channel>
</rss>

