<?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 an Excel list (export from ?somewhere?) with 2-line records in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Loading-an-Excel-list-export-from-somewhere-with-2-line-records/m-p/770447#M662535</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi DataNibbler,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a split or other preparing isn't possible? You will need something or you could forget it ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 23 Feb 2015 10:03:04 GMT</pubDate>
    <dc:creator>marcus_sommer</dc:creator>
    <dc:date>2015-02-23T10:03:04Z</dc:date>
    <item>
      <title>Loading an Excel list (export from ?somewhere?) with 2-line records</title>
      <link>https://community.qlik.com/t5/QlikView/Loading-an-Excel-list-export-from-somewhere-with-2-line-records/m-p/770443#M662531</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have to do a simple vlookup between two tables in Excel.&lt;/P&gt;&lt;P&gt;Simple enough.&lt;/P&gt;&lt;P&gt;The remaining hurdle is: The one Excel_file (from where I have to fetch a value if there is any) has 2-line records - and&lt;/P&gt;&lt;P&gt;I need&lt;/P&gt;&lt;P&gt;- the item_nr. from the 1st line of every record&lt;/P&gt;&lt;P&gt;- the BIN nr. from the 2nd line of every record&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=&amp;gt; So I cannot use a WHERE ISNUM to filter for just the lines with item_numbers for then all the BIN_numbers would not be connected.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anyone help me on this?&lt;/P&gt;&lt;P&gt;Thanks a lot!&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DataNibbler&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;P.S.: I cannot use the logic that all odd-numbered lines have an item_nr. and the even-numbered have a BIN_number and then JOIN them because sometimes there are several lines for one item_nr., so that can vary.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Feb 2015 09:20:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Loading-an-Excel-list-export-from-somewhere-with-2-line-records/m-p/770443#M662531</guid>
      <dc:creator>datanibbler</dc:creator>
      <dc:date>2015-02-23T09:20:21Z</dc:date>
    </item>
    <item>
      <title>Re: Loading an Excel list (export from ?somewhere?) with 2-line records</title>
      <link>https://community.qlik.com/t5/QlikView/Loading-an-Excel-list-export-from-somewhere-with-2-line-records/m-p/770444#M662532</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi DataNibbler,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would probably try to prepare the xls-load and split every record into two records and use the resulting table in a where-clause, maybe in this kind:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;table:&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; recno() as RecNo, rowno() as RowNo,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; subfield(Field, chr(10) &amp;amp; chr(13), 1) as SplitField1, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; subfield(Field, chr(10) &amp;amp; chr(13), 2) as SplitField2&lt;/P&gt;&lt;P&gt;From xyz;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Maybe you used no third parameter for subfield if you have an unknown number of nested records.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Feb 2015 09:46:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Loading-an-Excel-list-export-from-somewhere-with-2-line-records/m-p/770444#M662532</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2015-02-23T09:46:34Z</dc:date>
    </item>
    <item>
      <title>Re: Loading an Excel list (export from ?somewhere?) with 2-line records</title>
      <link>https://community.qlik.com/t5/QlikView/Loading-an-Excel-list-export-from-somewhere-with-2-line-records/m-p/770445#M662533</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is there any primary key field that exists on both rows of the same record?&lt;/P&gt;&lt;P&gt;For better understanding can u please share the sample data..?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Feb 2015 09:49:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Loading-an-Excel-list-export-from-somewhere-with-2-line-records/m-p/770445#M662533</guid>
      <dc:creator>PradeepReddy</dc:creator>
      <dc:date>2015-02-23T09:49:13Z</dc:date>
    </item>
    <item>
      <title>Re: Loading an Excel list (export from ?somewhere?) with 2-line records</title>
      <link>https://community.qlik.com/t5/QlikView/Loading-an-Excel-list-export-from-somewhere-with-2-line-records/m-p/770446#M662534</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi pradeep,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks a lot for your help! No, there is no key I could use to join the data to the item_number.&lt;/P&gt;&lt;P&gt;There is nothing. Really chaotic.&lt;/P&gt;&lt;P&gt;I guess I'll have to ask from where that list was exported and whether it can be exported in any other way. Maybe something was left out though I doubt it.&lt;/P&gt;&lt;P&gt;PFA a sample_file that looks like it - just the two columns that I need.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Feb 2015 09:55:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Loading-an-Excel-list-export-from-somewhere-with-2-line-records/m-p/770446#M662534</guid>
      <dc:creator>datanibbler</dc:creator>
      <dc:date>2015-02-23T09:55:31Z</dc:date>
    </item>
    <item>
      <title>Re: Loading an Excel list (export from ?somewhere?) with 2-line records</title>
      <link>https://community.qlik.com/t5/QlikView/Loading-an-Excel-list-export-from-somewhere-with-2-line-records/m-p/770447#M662535</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi DataNibbler,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a split or other preparing isn't possible? You will need something or you could forget it ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Feb 2015 10:03:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Loading-an-Excel-list-export-from-somewhere-with-2-line-records/m-p/770447#M662535</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2015-02-23T10:03:04Z</dc:date>
    </item>
    <item>
      <title>Re: Loading an Excel list (export from ?somewhere?) with 2-line records</title>
      <link>https://community.qlik.com/t5/QlikView/Loading-an-Excel-list-export-from-somewhere-with-2-line-records/m-p/770448#M662536</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Marcus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;yes, I'm afraid you're right. I will ask if anything can be done about that format.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But maybe - all I'd have to do is actually populate the item_numbers downward - I could use PREVIOUS to just copy one number from one line to the next until I encounter another one? Could that work?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Feb 2015 10:13:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Loading-an-Excel-list-export-from-somewhere-with-2-line-records/m-p/770448#M662536</guid>
      <dc:creator>datanibbler</dc:creator>
      <dc:date>2015-02-23T10:13:58Z</dc:date>
    </item>
    <item>
      <title>Re: Loading an Excel list (export from ?somewhere?) with 2-line records</title>
      <link>https://community.qlik.com/t5/QlikView/Loading-an-Excel-list-export-from-somewhere-with-2-line-records/m-p/770449#M662537</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi DataNibbler,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you could use subfield with a third parameter you will be have all information on one record. If not you could use previous or peek to bring the data in a correct order - maybe you could for this also use a combination from recno and rowno.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Maybe you also need some additional cleaning with keepchar(), replace and so on.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Feb 2015 10:23:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Loading-an-Excel-list-export-from-somewhere-with-2-line-records/m-p/770449#M662537</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2015-02-23T10:23:45Z</dc:date>
    </item>
    <item>
      <title>Re: Loading an Excel list (export from ?somewhere?) with 2-line records</title>
      <link>https://community.qlik.com/t5/QlikView/Loading-an-Excel-list-export-from-somewhere-with-2-line-records/m-p/770450#M662540</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Marcus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what do you mean with Subfield? I can't figure out any way to do with that function?&lt;/P&gt;&lt;P&gt;I'm just experimenting with that PEEK() or PREVIOUS(), but that doesn't quite work yet.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Feb 2015 10:27:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Loading-an-Excel-list-export-from-somewhere-with-2-line-records/m-p/770450#M662540</guid>
      <dc:creator>datanibbler</dc:creator>
      <dc:date>2015-02-23T10:27:24Z</dc:date>
    </item>
    <item>
      <title>Re: Loading an Excel list (export from ?somewhere?) with 2-line records</title>
      <link>https://community.qlik.com/t5/QlikView/Loading-an-Excel-list-export-from-somewhere-with-2-line-records/m-p/770451#M662543</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi DataNibbler,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;with subfield you could split a string into pieces with a defined delimiter. In a load-statement you could use a fixed version with a third parameter which will split only in these string-parts which a called and by the version without a third parameter it will create for each part a new record - which you could easily track with recno and rowno.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Feb 2015 10:32:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Loading-an-Excel-list-export-from-somewhere-with-2-line-records/m-p/770451#M662543</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2015-02-23T10:32:16Z</dc:date>
    </item>
    <item>
      <title>Re: Loading an Excel list (export from ?somewhere?) with 2-line records</title>
      <link>https://community.qlik.com/t5/QlikView/Loading-an-Excel-list-export-from-somewhere-with-2-line-records/m-p/770452#M662545</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Marcus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;yes, I know that use, you explained that to me a while ago and I used it successfully.&lt;/P&gt;&lt;P&gt;But I still cannot imagine how I could use it in this scenario?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Feb 2015 10:35:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Loading-an-Excel-list-export-from-somewhere-with-2-line-records/m-p/770452#M662545</guid>
      <dc:creator>datanibbler</dc:creator>
      <dc:date>2015-02-23T10:35:47Z</dc:date>
    </item>
    <item>
      <title>Re: Loading an Excel list (export from ?somewhere?) with 2-line records</title>
      <link>https://community.qlik.com/t5/QlikView/Loading-an-Excel-list-export-from-somewhere-with-2-line-records/m-p/770453#M662547</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi DataNibbler,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for this we will need a short data-example with perhaps two records and what is the relevant information from that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Feb 2015 10:39:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Loading-an-Excel-list-export-from-somewhere-with-2-line-records/m-p/770453#M662547</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2015-02-23T10:39:49Z</dc:date>
    </item>
    <item>
      <title>Re: Loading an Excel list (export from ?somewhere?) with 2-line records</title>
      <link>https://community.qlik.com/t5/QlikView/Loading-an-Excel-list-export-from-somewhere-with-2-line-records/m-p/770454#M662549</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;I'm still working on the populating downward.&lt;/P&gt;&lt;P&gt;One instance is&lt;/P&gt;&lt;P&gt;- In line 25, there is an item_nr.&lt;/P&gt;&lt;P&gt;- In lines 26 and 27, there is a BIN&lt;/P&gt;&lt;P&gt;- In line 28 comes the next item_nr.&lt;/P&gt;&lt;P&gt;The code &amp;gt;&amp;gt; IF(LEN(item)=0, PREVIOUS(item), item) &amp;lt;&amp;lt;&lt;/P&gt;&lt;P&gt;works fine from line 25 to 26 - I now have the same item_nr. in line 26 as in 25 - but it doesn't work on line 27.&lt;/P&gt;&lt;P&gt;Can you tell me why that is?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Feb 2015 10:41:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Loading-an-Excel-list-export-from-somewhere-with-2-line-records/m-p/770454#M662549</guid>
      <dc:creator>datanibbler</dc:creator>
      <dc:date>2015-02-23T10:41:15Z</dc:date>
    </item>
    <item>
      <title>Re: Loading an Excel list (export from ?somewhere?) with 2-line records</title>
      <link>https://community.qlik.com/t5/QlikView/Loading-an-Excel-list-export-from-somewhere-with-2-line-records/m-p/770455#M662550</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;Hi Marcus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have attached such an example to one of my previous posts.&lt;/P&gt;&lt;P&gt;Never mind, here it is once more&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Feb 2015 10:42:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Loading-an-Excel-list-export-from-somewhere-with-2-line-records/m-p/770455#M662550</guid>
      <dc:creator>datanibbler</dc:creator>
      <dc:date>2015-02-23T10:42:19Z</dc:date>
    </item>
    <item>
      <title>Re: Loading an Excel list (export from ?somewhere?) with 2-line records</title>
      <link>https://community.qlik.com/t5/QlikView/Loading-an-Excel-list-export-from-somewhere-with-2-line-records/m-p/770456#M662551</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think we can achievie this using some ETL transformations.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope the thatched application carters your requirement.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Feb 2015 10:55:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Loading-an-Excel-list-export-from-somewhere-with-2-line-records/m-p/770456#M662551</guid>
      <dc:creator>PradeepReddy</dc:creator>
      <dc:date>2015-02-23T10:55:50Z</dc:date>
    </item>
    <item>
      <title>Re: Loading an Excel list (export from ?somewhere?) with 2-line records</title>
      <link>https://community.qlik.com/t5/QlikView/Loading-an-Excel-list-export-from-somewhere-with-2-line-records/m-p/770457#M662552</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi DataNibbler,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;your approach is generally correct but some small detail is missing - have a look on the attachment. Maybe you need some more cleaning with where len(BIN) &amp;gt;= 1 or similar.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Feb 2015 10:57:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Loading-an-Excel-list-export-from-somewhere-with-2-line-records/m-p/770457#M662552</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2015-02-23T10:57:10Z</dc:date>
    </item>
    <item>
      <title>Re: Loading an Excel list (export from ?somewhere?) with 2-line records</title>
      <link>https://community.qlik.com/t5/QlikView/Loading-an-Excel-list-export-from-somewhere-with-2-line-records/m-p/770458#M662553</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Marcus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it's still the same issue. It works well for one line - for instance, the item_nr from line 25 is populated into line 26 - but it is not populated further into line 27 (that also belongs to the item_nr. from line 25)&lt;/P&gt;&lt;P&gt;I'm at a loss here. I think I'm going to have a bite to eat now, maybe I can think of something lateron.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Feb 2015 11:11:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Loading-an-Excel-list-export-from-somewhere-with-2-line-records/m-p/770458#M662553</guid>
      <dc:creator>datanibbler</dc:creator>
      <dc:date>2015-02-23T11:11:13Z</dc:date>
    </item>
    <item>
      <title>Re: Loading an Excel list (export from ?somewhere?) with 2-line records</title>
      <link>https://community.qlik.com/t5/QlikView/Loading-an-Excel-list-export-from-somewhere-with-2-line-records/m-p/770459#M662554</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi DataNibbler,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't understand ... or are the real data different from the xls - in there it worked.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Feb 2015 11:14:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Loading-an-Excel-list-export-from-somewhere-with-2-line-records/m-p/770459#M662554</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2015-02-23T11:14:46Z</dc:date>
    </item>
    <item>
      <title>Re: Loading an Excel list (export from ?somewhere?) with 2-line records</title>
      <link>https://community.qlik.com/t5/QlikView/Loading-an-Excel-list-export-from-somewhere-with-2-line-records/m-p/770460#M662555</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px; background-color: #f6f6f6;"&gt;Hi DataNibble,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px; background-color: #f6f6f6;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;If you are looking for this type of data...&amp;nbsp; Try with Fill Option from while loading the data. I have done the same thing in my application attached in previous post.&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-1 jive-image" src="https://community.qlik.com/legacyfs/online/78844_pastedImage_0.png" style="max-width: 1200px; max-height: 900px;" /&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Pradeep&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Feb 2015 11:15:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Loading-an-Excel-list-export-from-somewhere-with-2-line-records/m-p/770460#M662555</guid>
      <dc:creator>PradeepReddy</dc:creator>
      <dc:date>2015-02-23T11:15:21Z</dc:date>
    </item>
    <item>
      <title>Re: Loading an Excel list (export from ?somewhere?) with 2-line records</title>
      <link>https://community.qlik.com/t5/QlikView/Loading-an-Excel-list-export-from-somewhere-with-2-line-records/m-p/770461#M662556</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ah, now I have my mistake (no, I haven't eaten yet, I'm not that fast &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It's like this&lt;/P&gt;&lt;P&gt;- There are two columns, A and B&lt;/P&gt;&lt;P&gt;- In column A, there is an item_nr. in, say, line 1, but not in 2,3,4&lt;/P&gt;&lt;P&gt;=&amp;gt; I can populate line 2 in column B based on line 1 in column A&lt;/P&gt;&lt;P&gt;&amp;lt;=&amp;gt; I cannot do the same for line 3 in column B because line 2 in column A is blank whereas line 2 in column B is&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; populated.&lt;/P&gt;&lt;P&gt;The difference is thus in the field_names. I tried renaming what is column B here up to now. Maybe that was the mistake.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Feb 2015 11:17:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Loading-an-Excel-list-export-from-somewhere-with-2-line-records/m-p/770461#M662556</guid>
      <dc:creator>datanibbler</dc:creator>
      <dc:date>2015-02-23T11:17:37Z</dc:date>
    </item>
    <item>
      <title>Re: Loading an Excel list (export from ?somewhere?) with 2-line records</title>
      <link>https://community.qlik.com/t5/QlikView/Loading-an-Excel-list-export-from-somewhere-with-2-line-records/m-p/770462#M662557</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;yes, that is just what I need.&lt;/P&gt;&lt;P&gt;I think it works now - I have populated the item_nr downward so that now, every row has an item_nr., just now every row has a BIN.&lt;/P&gt;&lt;P&gt;Now I can just throw out those rows where there is no BIN and I'll finally have the table I need to do the vlookup that I need. Let's see ...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Feb 2015 11:24:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Loading-an-Excel-list-export-from-somewhere-with-2-line-records/m-p/770462#M662557</guid>
      <dc:creator>datanibbler</dc:creator>
      <dc:date>2015-02-23T11:24:07Z</dc:date>
    </item>
  </channel>
</rss>

