<?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: LOADING SplitWise Files with CrossTAB Loading Isse in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/LOADING-SplitWise-Files-with-CrossTAB-Loading-Isse/m-p/1701945#M451251</link>
    <description>&lt;P&gt;hi Lakshman,&lt;/P&gt;&lt;P&gt;try this this script that&amp;nbsp;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Split the rows&lt;/LI&gt;&lt;LI&gt;generate a separate files with 15 rows.&lt;/LI&gt;&lt;LI&gt;use you excel file and you customize your&amp;nbsp; rows&amp;nbsp; by changing the value&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Your_excel_file:&lt;/P&gt;&lt;P&gt;LOAD RowNo() as row,&lt;/P&gt;&lt;P&gt;"Region Name",&lt;BR /&gt;ID,&lt;BR /&gt;Productname,&lt;BR /&gt;SalesAmount,&lt;BR /&gt;"Modified Date"&lt;BR /&gt;FROM [lib://DataFiles/sales_full load.xlsx]&lt;BR /&gt;(ooxml, embedded labels, table is sales);&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;LET file=0;&lt;BR /&gt;LET count=NoOfRows('Your_excel_file');&lt;/P&gt;&lt;P&gt;DO WHILE count &amp;gt; 0&lt;/P&gt;&lt;P&gt;noconcatenate&lt;/P&gt;&lt;P&gt;Tab:&lt;/P&gt;&lt;P&gt;FIRST (15)&lt;/P&gt;&lt;P&gt;LOAD&lt;BR /&gt;"Region Name",&lt;BR /&gt;ID,&lt;BR /&gt;Productname,&lt;BR /&gt;SalesAmount,&lt;BR /&gt;"Modified Date"&lt;/P&gt;&lt;P&gt;resident Your_excel_file&lt;/P&gt;&lt;P&gt;where row &amp;gt; $(file)*15 and row &amp;lt; ($(file)+1)*15;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;store Tab into [lib://DataFiles/COUNTRY_IN_$(file).txt](txt);&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;drop Table Tab;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;LET count = $(count) - 15;&lt;/P&gt;&lt;P&gt;LET file = $(file) + 1;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;LOOP;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;raji&lt;/P&gt;</description>
    <pubDate>Thu, 14 May 2020 11:15:15 GMT</pubDate>
    <dc:creator>raji6763</dc:creator>
    <dc:date>2020-05-14T11:15:15Z</dc:date>
    <item>
      <title>LOADING SplitWise Files with CrossTAB Loading Isse</title>
      <link>https://community.qlik.com/t5/QlikView/LOADING-SplitWise-Files-with-CrossTAB-Loading-Isse/m-p/1701691#M451238</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have an excel sheet with below information with 20000+ rows&amp;nbsp; ( I have taken sample for 60+ rows )&amp;nbsp;&lt;/P&gt;&lt;TABLE width="746"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD width="56"&gt;Country&lt;/TD&gt;&lt;TD width="163"&gt;Customer Name&lt;/TD&gt;&lt;TD width="86"&gt;PLAN&lt;/TD&gt;&lt;TD width="76"&gt;DEVICE&lt;/TD&gt;&lt;TD width="73"&gt;&amp;nbsp;2020 Q1 INFLOW&amp;nbsp;&lt;/TD&gt;&lt;TD width="73"&gt;&amp;nbsp;2019 Q1 INFLOW&amp;nbsp;&lt;/TD&gt;&lt;TD width="73"&gt;&amp;nbsp;2019 Q2 INFLOW&amp;nbsp;&lt;/TD&gt;&lt;TD width="73"&gt;&amp;nbsp;2019 Q3 INFLOW&amp;nbsp;&lt;/TD&gt;&lt;TD width="73"&gt;&amp;nbsp;2019 Q4 INFLOW&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Splitting the file with every 15 records as COUNTRY_IN_0,&amp;nbsp;&amp;nbsp;COUNTRY_IN_1, .....&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to load the split files as Crosstab individually and not able to compile it.&lt;/P&gt;&lt;P&gt;enclosing the EXCEL Source file and QVW file . Please help on this.&lt;/P&gt;&lt;P&gt;I want to use the Split files and process with Crosstab and generate Final data files as input for other sources.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Vepuri&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 18:39:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/LOADING-SplitWise-Files-with-CrossTAB-Loading-Isse/m-p/1701691#M451238</guid>
      <dc:creator>lakshmanvepuri</dc:creator>
      <dc:date>2024-11-16T18:39:00Z</dc:date>
    </item>
    <item>
      <title>Re: LOADING SplitWise Files with CrossTAB Loading Isse</title>
      <link>https://community.qlik.com/t5/QlikView/LOADING-SplitWise-Files-with-CrossTAB-Loading-Isse/m-p/1701945#M451251</link>
      <description>&lt;P&gt;hi Lakshman,&lt;/P&gt;&lt;P&gt;try this this script that&amp;nbsp;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Split the rows&lt;/LI&gt;&lt;LI&gt;generate a separate files with 15 rows.&lt;/LI&gt;&lt;LI&gt;use you excel file and you customize your&amp;nbsp; rows&amp;nbsp; by changing the value&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Your_excel_file:&lt;/P&gt;&lt;P&gt;LOAD RowNo() as row,&lt;/P&gt;&lt;P&gt;"Region Name",&lt;BR /&gt;ID,&lt;BR /&gt;Productname,&lt;BR /&gt;SalesAmount,&lt;BR /&gt;"Modified Date"&lt;BR /&gt;FROM [lib://DataFiles/sales_full load.xlsx]&lt;BR /&gt;(ooxml, embedded labels, table is sales);&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;LET file=0;&lt;BR /&gt;LET count=NoOfRows('Your_excel_file');&lt;/P&gt;&lt;P&gt;DO WHILE count &amp;gt; 0&lt;/P&gt;&lt;P&gt;noconcatenate&lt;/P&gt;&lt;P&gt;Tab:&lt;/P&gt;&lt;P&gt;FIRST (15)&lt;/P&gt;&lt;P&gt;LOAD&lt;BR /&gt;"Region Name",&lt;BR /&gt;ID,&lt;BR /&gt;Productname,&lt;BR /&gt;SalesAmount,&lt;BR /&gt;"Modified Date"&lt;/P&gt;&lt;P&gt;resident Your_excel_file&lt;/P&gt;&lt;P&gt;where row &amp;gt; $(file)*15 and row &amp;lt; ($(file)+1)*15;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;store Tab into [lib://DataFiles/COUNTRY_IN_$(file).txt](txt);&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;drop Table Tab;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;LET count = $(count) - 15;&lt;/P&gt;&lt;P&gt;LET file = $(file) + 1;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;LOOP;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;raji&lt;/P&gt;</description>
      <pubDate>Thu, 14 May 2020 11:15:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/LOADING-SplitWise-Files-with-CrossTAB-Loading-Isse/m-p/1701945#M451251</guid>
      <dc:creator>raji6763</dc:creator>
      <dc:date>2020-05-14T11:15:15Z</dc:date>
    </item>
  </channel>
</rss>

