<?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: Reading specific rows from Excel in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Reading-specific-rows-from-Excel/m-p/581603#M1096736</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you very much, this works a treat!!! &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/grin.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 30 Apr 2014 13:35:20 GMT</pubDate>
    <dc:creator />
    <dc:date>2014-04-30T13:35:20Z</dc:date>
    <item>
      <title>Reading specific rows from Excel</title>
      <link>https://community.qlik.com/t5/QlikView/Reading-specific-rows-from-Excel/m-p/581599#M1096732</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;I am using qlikview and still trying to get my head around the coding but have a question that someone might be able to help with.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have an excel file that is loaded into qlikview, however I would like to code it in a way to be able to read specific rows. Eg:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The data I am interested is in an excel file called tester.xls and I only want to read rows 10 to 25 where the data I need resided. Is there a way of doing this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many thanks in advance for your help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Roberto&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Apr 2014 13:17:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reading-specific-rows-from-Excel/m-p/581599#M1096732</guid>
      <dc:creator />
      <dc:date>2014-04-30T13:17:45Z</dc:date>
    </item>
    <item>
      <title>Re: Reading specific rows from Excel</title>
      <link>https://community.qlik.com/t5/QlikView/Reading-specific-rows-from-Excel/m-p/581600#M1096733</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi if there is a condition that evaluates to true when you want to import the row and false otherwise you could use that in the file import wizard eg a certain column is populated? otherwise you could load all the data adding a rowno() field then resedent load into a new table where the rowno is between 10 and 25?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Steve&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Apr 2014 13:21:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reading-specific-rows-from-Excel/m-p/581600#M1096733</guid>
      <dc:creator>sbaldwin</dc:creator>
      <dc:date>2014-04-30T13:21:35Z</dc:date>
    </item>
    <item>
      <title>Re: Reading specific rows from Excel</title>
      <link>https://community.qlik.com/t5/QlikView/Reading-specific-rows-from-Excel/m-p/581601#M1096734</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Write like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Load * from Location&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Where RowNo( ) &amp;gt;= 10 and Rowno( ) &amp;lt;= 25;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Apr 2014 13:22:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reading-specific-rows-from-Excel/m-p/581601#M1096734</guid>
      <dc:creator>its_anandrjs</dc:creator>
      <dc:date>2014-04-30T13:22:43Z</dc:date>
    </item>
    <item>
      <title>Re: Reading specific rows from Excel</title>
      <link>https://community.qlik.com/t5/QlikView/Reading-specific-rows-from-Excel/m-p/581602#M1096735</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Another way is&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Write like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Table1:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Load *,Rowno() as Rid from Location;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Noconcatenate&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;Final:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Load * from Location&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Where &lt;STRONG&gt;Rid&lt;/STRONG&gt; &amp;gt;= 10 and &lt;STRONG&gt;Rid&lt;/STRONG&gt; &amp;lt;= 25;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Drop Table Table1;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Load * from Location&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Where RowNo( ) &amp;gt;= 10 and Rowno( ) &amp;lt;= 25;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Apr 2014 13:25:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reading-specific-rows-from-Excel/m-p/581602#M1096735</guid>
      <dc:creator>its_anandrjs</dc:creator>
      <dc:date>2014-04-30T13:25:34Z</dc:date>
    </item>
    <item>
      <title>Re: Reading specific rows from Excel</title>
      <link>https://community.qlik.com/t5/QlikView/Reading-specific-rows-from-Excel/m-p/581603#M1096736</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you very much, this works a treat!!! &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/grin.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Apr 2014 13:35:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reading-specific-rows-from-Excel/m-p/581603#M1096736</guid>
      <dc:creator />
      <dc:date>2014-04-30T13:35:20Z</dc:date>
    </item>
    <item>
      <title>Re: Reading specific rows from Excel</title>
      <link>https://community.qlik.com/t5/QlikView/Reading-specific-rows-from-Excel/m-p/581604#M1096737</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks I am very happy that it working &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Apr 2014 14:58:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reading-specific-rows-from-Excel/m-p/581604#M1096737</guid>
      <dc:creator>its_anandrjs</dc:creator>
      <dc:date>2014-04-30T14:58:20Z</dc:date>
    </item>
  </channel>
</rss>

