<?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: Need to read Excel in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Need-to-read-Excel/m-p/1027802#M639933</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I need to automate it across years &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/sad.png" /&gt;.&lt;/P&gt;&lt;P&gt;Anyway, Thank you for the help &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 29 Feb 2016 05:32:05 GMT</pubDate>
    <dc:creator>shannoypaul</dc:creator>
    <dc:date>2016-02-29T05:32:05Z</dc:date>
    <item>
      <title>Need to read Excel</title>
      <link>https://community.qlik.com/t5/QlikView/Need-to-read-Excel/m-p/1027797#M639928</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;Please find an excel attached.&lt;/P&gt;&lt;P&gt;The first Sheet 1 (Source) is the file I get. I need to transform the file in such a way that I get the output as shown in Sheet 2 (Output).&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>Thu, 25 Feb 2016 12:22:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Need-to-read-Excel/m-p/1027797#M639928</guid>
      <dc:creator>shannoypaul</dc:creator>
      <dc:date>2016-02-25T12:22:58Z</dc:date>
    </item>
    <item>
      <title>Re: Need to read Excel</title>
      <link>https://community.qlik.com/t5/QlikView/Need-to-read-Excel/m-p/1027798#M639929</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;may be helpful to you?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://gist.github.com/ralfbecher/7907918" title="https://gist.github.com/ralfbecher/7907918"&gt;QlikView Load Multiline Header Labels as Field Names from Excel (or CSV) source · GitHub&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Feb 2016 12:32:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Need-to-read-Excel/m-p/1027798#M639929</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-02-25T12:32:30Z</dc:date>
    </item>
    <item>
      <title>Re: Need to read Excel</title>
      <link>https://community.qlik.com/t5/QlikView/Need-to-read-Excel/m-p/1027799#M639930</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Table:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD RowNo() as Sort,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; Ceil(RowNo()/4) as CountryNum,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; F1 as [Importing FCI Site], &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; F2 as [Supplying Region], &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; F3 as [Inventory Type], &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Final Adder (%)1]&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;FROM&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;[Upload - Markup.xls]&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;(biff, embedded labels, header is 2 lines, table is Source$, filters(&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Replace(2, top, StrCnd(null))&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;));&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;FinalTable:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD Sort,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; If(Len(Trim([Importing FCI Site])) = 0, Peek('Importing FCI Site'), [Importing FCI Site]) as [Importing FCI Site], &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Supplying Region], &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Inventory Type], &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Final Adder (%)1]&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Resident Table&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Order By CountryNum, [Importing FCI Site] desc;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;DROP Table Table;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;IMG alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/115976_Capture.PNG" style="height: auto;" /&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Feb 2016 13:19:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Need-to-read-Excel/m-p/1027799#M639930</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-02-25T13:19:35Z</dc:date>
    </item>
    <item>
      <title>Re: Need to read Excel</title>
      <link>https://community.qlik.com/t5/QlikView/Need-to-read-Excel/m-p/1027800#M639931</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sunny, Next Year Final adder % 2017 would be [Final Adder%2]. How can I resolve that issue?&lt;/P&gt;&lt;P&gt;Each year the file would be appended.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Feb 2016 12:46:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Need-to-read-Excel/m-p/1027800#M639931</guid>
      <dc:creator>shannoypaul</dc:creator>
      <dc:date>2016-02-26T12:46:19Z</dc:date>
    </item>
    <item>
      <title>Re: Need to read Excel</title>
      <link>https://community.qlik.com/t5/QlikView/Need-to-read-Excel/m-p/1027801#M639932</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So what is the problem with that? You can add that as another column&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Feb 2016 12:48:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Need-to-read-Excel/m-p/1027801#M639932</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-02-26T12:48:29Z</dc:date>
    </item>
    <item>
      <title>Re: Need to read Excel</title>
      <link>https://community.qlik.com/t5/QlikView/Need-to-read-Excel/m-p/1027802#M639933</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I need to automate it across years &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/sad.png" /&gt;.&lt;/P&gt;&lt;P&gt;Anyway, Thank you for the help &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Feb 2016 05:32:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Need-to-read-Excel/m-p/1027802#M639933</guid>
      <dc:creator>shannoypaul</dc:creator>
      <dc:date>2016-02-29T05:32:05Z</dc:date>
    </item>
    <item>
      <title>Re: Need to read Excel</title>
      <link>https://community.qlik.com/t5/QlikView/Need-to-read-Excel/m-p/1027803#M639934</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Automated in what way? If a new period is added you would like QlikView to read the new year without you needing to go in an add a new year? Is that what the goal is?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Feb 2016 09:34:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Need-to-read-Excel/m-p/1027803#M639934</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-02-29T09:34:28Z</dc:date>
    </item>
    <item>
      <title>Re: Need to read Excel</title>
      <link>https://community.qlik.com/t5/QlikView/Need-to-read-Excel/m-p/1027804#M639935</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, somehow if we could read the most recent Column for the Final Adder %.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Mar 2016 10:44:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Need-to-read-Excel/m-p/1027804#M639935</guid>
      <dc:creator>shannoypaul</dc:creator>
      <dc:date>2016-03-02T10:44:12Z</dc:date>
    </item>
  </channel>
</rss>

