<?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 Help with Load Script - in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Help-with-Load-Script/m-p/299234#M1199500</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;See 'crosstable' in the QlikView Help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 09 Jan 2011 19:39:05 GMT</pubDate>
    <dc:creator>MichaelRobertshaw</dc:creator>
    <dc:date>2011-01-09T19:39:05Z</dc:date>
    <item>
      <title>Help with Load Script -</title>
      <link>https://community.qlik.com/t5/QlikView/Help-with-Load-Script/m-p/299233#M1199499</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;I have attached a image, which contains the format of my data in .csv file, please help me, how to load these data into QV, with and without test column.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in Advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 09 Jan 2011 07:11:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-with-Load-Script/m-p/299233#M1199499</guid>
      <dc:creator />
      <dc:date>2011-01-09T07:11:49Z</dc:date>
    </item>
    <item>
      <title>Help with Load Script -</title>
      <link>https://community.qlik.com/t5/QlikView/Help-with-Load-Script/m-p/299234#M1199500</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;See 'crosstable' in the QlikView Help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 09 Jan 2011 19:39:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-with-Load-Script/m-p/299234#M1199500</guid>
      <dc:creator>MichaelRobertshaw</dc:creator>
      <dc:date>2011-01-09T19:39:05Z</dc:date>
    </item>
    <item>
      <title>Help with Load Script -</title>
      <link>https://community.qlik.com/t5/QlikView/Help-with-Load-Script/m-p/299235#M1199501</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you please help me with the script.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Jan 2011 16:35:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-with-Load-Script/m-p/299235#M1199501</guid>
      <dc:creator />
      <dc:date>2011-01-10T16:35:40Z</dc:date>
    </item>
    <item>
      <title>Help with Load Script -</title>
      <link>https://community.qlik.com/t5/QlikView/Help-with-Load-Script/m-p/299236#M1199502</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi qlikviewgoer,&lt;/P&gt;&lt;P&gt;please send the data of your image or similar sample data in the original format (I assume its excel). This is a better to load and to show you how to do this.&lt;/P&gt;&lt;P&gt;Regards, Roland&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Jan 2011 17:02:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-with-Load-Script/m-p/299236#M1199502</guid>
      <dc:creator />
      <dc:date>2011-01-10T17:02:11Z</dc:date>
    </item>
    <item>
      <title>Re. :Help with Load Script -</title>
      <link>https://community.qlik.com/t5/QlikView/Help-with-Load-Script/m-p/299237#M1199503</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;You have to develop something like this or send your file to adapt it :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;&lt;BR /&gt;&lt;BR /&gt;temp:&lt;BR /&gt;CrossTable(Month, Data)&lt;BR /&gt;LOAD *&lt;BR /&gt;FROM $(Path)\$(File).xlsx (ooxml, embedded labels, table is Feuil1);&lt;BR /&gt;&lt;BR /&gt;temp2:&lt;BR /&gt;Load&lt;BR /&gt; Prod,&lt;BR /&gt; if(isnum(mid(Month,2))=False() and len(trim(Month))&amp;gt;1,Month,peek(Month)) as Month,&lt;BR /&gt; Data,&lt;BR /&gt; recno() as recno&lt;BR /&gt;Resident temp&lt;BR /&gt;;&lt;BR /&gt;&lt;BR /&gt;DROP TABLE temp;&lt;BR /&gt;&lt;BR /&gt;temp3:&lt;BR /&gt;Load Prod,&lt;BR /&gt; Month,&lt;BR /&gt; tmpType1,&lt;BR /&gt; if(len(trim(tmpType1))=0,peek(tmpType1)) as Type1,&lt;BR /&gt; Type2;&lt;BR /&gt;Load&lt;BR /&gt; Prod,&lt;BR /&gt; Month,&lt;BR /&gt; if(mod(recno,3)=2,Data) as tmpType1,&lt;BR /&gt; if(mod(recno,3)=0,Data) as Type2&lt;BR /&gt;Resident temp2&lt;BR /&gt;Where mod(recno,3)&amp;lt;&amp;gt;1&lt;BR /&gt;and len(trim(Prod))&amp;gt;0;&lt;BR /&gt;&lt;BR /&gt;DROP Table temp2;&lt;BR /&gt;&lt;BR /&gt;Table:&lt;BR /&gt;NOCONCATENATE Load&lt;BR /&gt; Prod,&lt;BR /&gt; Month,&lt;BR /&gt; Type1,&lt;BR /&gt; Type2&lt;BR /&gt;Resident temp3&lt;BR /&gt;WHERE len(trim(Type2))&amp;gt;0;&lt;BR /&gt;&lt;BR /&gt;DROP Table temp3;&lt;BR /&gt;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;Hope it helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Jan 2011 17:31:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-with-Load-Script/m-p/299237#M1199503</guid>
      <dc:creator>martin59</dc:creator>
      <dc:date>2011-01-10T17:31:07Z</dc:date>
    </item>
    <item>
      <title>Help with Load Script -</title>
      <link>https://community.qlik.com/t5/QlikView/Help-with-Load-Script/m-p/299238#M1199504</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your reply... I have attached a sample .xls data file....&lt;/P&gt;&lt;P&gt;And also I have to remove weeks columns and divide the Hours and Revenue by number of days .&lt;/P&gt;&lt;P&gt;Thanks in advance...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Jan 2011 18:07:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-with-Load-Script/m-p/299238#M1199504</guid>
      <dc:creator />
      <dc:date>2011-01-10T18:07:18Z</dc:date>
    </item>
    <item>
      <title>Re. :Re: Help with Load Script -</title>
      <link>https://community.qlik.com/t5/QlikView/Help-with-Load-Script/m-p/299239#M1199506</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here is your load script :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;&lt;BR /&gt;&lt;BR /&gt;temp:&lt;BR /&gt;CrossTable(Month, Data,4)&lt;BR /&gt;LOAD *&lt;BR /&gt;FROM&lt;BR /&gt;$(Path)\Sample.xls&lt;BR /&gt;(biff, embedded labels, table is [Report Data$]);&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;temp2:&lt;BR /&gt;Load&lt;BR /&gt; Reg,&lt;BR /&gt; Div,&lt;BR /&gt; Team,&lt;BR /&gt; Member,&lt;BR /&gt; if(isnum(mid(Month,2))=False() and len(trim(Month))&amp;gt;1,Month,peek(Month)) as Month,&lt;BR /&gt; Data,&lt;BR /&gt; recno() as recno&lt;BR /&gt;Resident temp&lt;BR /&gt;;&lt;BR /&gt;&lt;BR /&gt;DROP TABLE temp;&lt;BR /&gt;&lt;BR /&gt;temp3:&lt;BR /&gt;Load Reg,&lt;BR /&gt; Div,&lt;BR /&gt; Team,&lt;BR /&gt; Member,&lt;BR /&gt; Month,&lt;BR /&gt; tmpHours,&lt;BR /&gt; if(len(trim(tmpHours))=0,peek(tmpHours)) as Hours,&lt;BR /&gt; Revenue;&lt;BR /&gt;Load&lt;BR /&gt; Reg,&lt;BR /&gt; Div,&lt;BR /&gt; Team,&lt;BR /&gt; Member,&lt;BR /&gt; Month,&lt;BR /&gt; if(mod(recno,3)=2,Data) as tmpHours,&lt;BR /&gt; if(mod(recno,3)=0,Data) as Revenue&lt;BR /&gt;Resident temp2&lt;BR /&gt;Where mod(recno,3)&amp;lt;&amp;gt;1&lt;BR /&gt;and len(trim(Reg))&amp;gt;0;&lt;BR /&gt;&lt;BR /&gt;DROP Table temp2;&lt;BR /&gt;&lt;BR /&gt;Table:&lt;BR /&gt;NOCONCATENATE Load&lt;BR /&gt; Reg,&lt;BR /&gt; Div,&lt;BR /&gt; Team,&lt;BR /&gt; Member,&lt;BR /&gt; Month,&lt;BR /&gt; Hours,&lt;BR /&gt; Revenue&lt;BR /&gt;Resident temp3&lt;BR /&gt;WHERE len(trim(Revenue))&amp;gt;0;&lt;BR /&gt;&lt;BR /&gt;DROP Table temp3;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;Hope it helps you&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Jan 2011 09:47:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-with-Load-Script/m-p/299239#M1199506</guid>
      <dc:creator>martin59</dc:creator>
      <dc:date>2011-01-11T09:47:52Z</dc:date>
    </item>
    <item>
      <title>Re. :Re: Help with Load Script -</title>
      <link>https://community.qlik.com/t5/QlikView/Help-with-Load-Script/m-p/299240#M1199508</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks a lot Martin....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Jan 2011 17:52:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-with-Load-Script/m-p/299240#M1199508</guid>
      <dc:creator />
      <dc:date>2011-01-11T17:52:46Z</dc:date>
    </item>
    <item>
      <title>Re. :Re: Help with Load Script -</title>
      <link>https://community.qlik.com/t5/QlikView/Help-with-Load-Script/m-p/299241#M1199510</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;And also can you please tell me how to create dates column for this table...i.e.&lt;/P&gt;&lt;P&gt;I should divide the Hours, Revenue by number of days in month Ex: for Jan the data should be divided by 31 (# of days in jan), 28 for Feb ...and sum by weekly... if the jan month ends in middle of the week then only calculate for jan and remaining for feb&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Jan 2011 18:01:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-with-Load-Script/m-p/299241#M1199510</guid>
      <dc:creator />
      <dc:date>2011-01-11T18:01:19Z</dc:date>
    </item>
  </channel>
</rss>

