<?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: Cntd...from #747675 How to split a single row in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Cntd-from-747675-How-to-split-a-single-row/m-p/867686#M303520</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gysbert,&lt;/P&gt;&lt;P&gt;You are correct. In my excel, date format was set as text and now it's working fine.&lt;/P&gt;&lt;P&gt;Thanks for your expert advise as usual and for your your time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;Senarath&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 08 Apr 2015 00:15:39 GMT</pubDate>
    <dc:creator>senarath</dc:creator>
    <dc:date>2015-04-08T00:15:39Z</dc:date>
    <item>
      <title>Cntd...from #747675 How to split a single row</title>
      <link>https://community.qlik.com/t5/QlikView/Cntd-from-747675-How-to-split-a-single-row/m-p/867683#M303517</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;Further to above thread, I'm trying to load data from a file and does not work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It works fine when load inline as below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Budget:&lt;/P&gt;&lt;P&gt;Load Factory,Customer,Area,Amount,Month,Amount2/DaysInMonth As Amount2, Date(Date#(Month,'MMM-YY') + IterNo() - 1) As Date &lt;/P&gt;&lt;P&gt;While IterNo() &amp;lt;= DaysInMonth; &lt;/P&gt;&lt;P&gt;Load Factory,Customer,Area,Month, Day(MonthEnd(Date#(Month,'MMM-YY'))) As DaysInMonth, Amount, Amount2 Inline [&amp;nbsp; &lt;/P&gt;&lt;P&gt;Factory,Customer,Area,Month,Amount, Amount2&amp;nbsp; &lt;/P&gt;&lt;P&gt;FactoryA,JIT customers,NorthArea,Feb-15,1600.00, 175 &lt;/P&gt;&lt;P&gt;FactoryB,Direct customers,NorthArea,Feb-15,1750.00, 140];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;DOES NOT upload the data&lt;/STRONG&gt; when I tried the same from a file as below. Script completes with no values&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Budget:&lt;/P&gt;&lt;P&gt;Load Factory,Customer,Area,Amount,Month,Amount2/DaysInMonth As Amount2, Date(Date#(Month,'MMM-YY') + IterNo() - 1) As Date &lt;/P&gt;&lt;P&gt;While IterNo() &amp;lt;= DaysInMonth; &lt;/P&gt;&lt;P&gt;Load Factory,Customer,Area,Month, Day(MonthEnd(Date#(Month,'MMM-YY'))) As DaysInMonth, Amount, Amount2 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;FROM&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;[Budget_L_2015-16.xlsx]&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;(ooxml, embedded labels, table is HK);&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Am I missing something here. Script completes but no data picked up&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Apr 2015 12:43:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Cntd-from-747675-How-to-split-a-single-row/m-p/867683#M303517</guid>
      <dc:creator>senarath</dc:creator>
      <dc:date>2015-04-07T12:43:32Z</dc:date>
    </item>
    <item>
      <title>Re: Cntd...from #747675 How to split a single row</title>
      <link>https://community.qlik.com/t5/QlikView/Cntd-from-747675-How-to-split-a-single-row/m-p/867684#M303518</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Could you attached your xlsx file?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Apr 2015 13:01:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Cntd-from-747675-How-to-split-a-single-row/m-p/867684#M303518</guid>
      <dc:creator>robert_mika</dc:creator>
      <dc:date>2015-04-07T13:01:58Z</dc:date>
    </item>
    <item>
      <title>Re: Cntd...from #747675 How to split a single row</title>
      <link>https://community.qlik.com/t5/QlikView/Cntd-from-747675-How-to-split-a-single-row/m-p/867685#M303519</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Possibly your excel Month values are not strings, but dates. The date# function wouldn't work then so DaysInMonth becomes a string value and IterNo() &amp;lt;= DaysInMonth will be a number to text comparison with the result that no records will be loaded.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Apr 2015 13:43:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Cntd-from-747675-How-to-split-a-single-row/m-p/867685#M303519</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2015-04-07T13:43:59Z</dc:date>
    </item>
    <item>
      <title>Re: Cntd...from #747675 How to split a single row</title>
      <link>https://community.qlik.com/t5/QlikView/Cntd-from-747675-How-to-split-a-single-row/m-p/867686#M303520</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gysbert,&lt;/P&gt;&lt;P&gt;You are correct. In my excel, date format was set as text and now it's working fine.&lt;/P&gt;&lt;P&gt;Thanks for your expert advise as usual and for your your time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;Senarath&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Apr 2015 00:15:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Cntd-from-747675-How-to-split-a-single-row/m-p/867686#M303520</guid>
      <dc:creator>senarath</dc:creator>
      <dc:date>2015-04-08T00:15:39Z</dc:date>
    </item>
    <item>
      <title>Re: Cntd...from #747675 How to split a single row</title>
      <link>https://community.qlik.com/t5/QlikView/Cntd-from-747675-How-to-split-a-single-row/m-p/867687#M303521</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Robert,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for th reply. Before upload the file, I tried what Gysbert had mentioned and it worked.&lt;/P&gt;&lt;P&gt;thanks for your time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds,&lt;/P&gt;&lt;P&gt;Senarath&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Apr 2015 00:16:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Cntd-from-747675-How-to-split-a-single-row/m-p/867687#M303521</guid>
      <dc:creator>senarath</dc:creator>
      <dc:date>2015-04-08T00:16:44Z</dc:date>
    </item>
  </channel>
</rss>

