<?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 How to load data with string from text file into qlikview in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-load-data-with-string-from-text-file-into-qlikview/m-p/1509758#M436571</link>
    <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;Here I am attaching an one text file ,it is having multiple tables of data in between tables there is some lines of strings.&lt;/P&gt;&lt;P&gt;how to load with this type of data into qlikview, could you please anyone suggest me to do that.&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;venkey.&lt;/P&gt;</description>
    <pubDate>Tue, 20 Nov 2018 13:53:12 GMT</pubDate>
    <dc:creator>venkey2847</dc:creator>
    <dc:date>2018-11-20T13:53:12Z</dc:date>
    <item>
      <title>How to load data with string from text file into qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-load-data-with-string-from-text-file-into-qlikview/m-p/1509758#M436571</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;Here I am attaching an one text file ,it is having multiple tables of data in between tables there is some lines of strings.&lt;/P&gt;&lt;P&gt;how to load with this type of data into qlikview, could you please anyone suggest me to do that.&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;venkey.&lt;/P&gt;</description>
      <pubDate>Tue, 20 Nov 2018 13:53:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-load-data-with-string-from-text-file-into-qlikview/m-p/1509758#M436571</guid>
      <dc:creator>venkey2847</dc:creator>
      <dc:date>2018-11-20T13:53:12Z</dc:date>
    </item>
    <item>
      <title>Re: How to load data with string from text file into qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-load-data-with-string-from-text-file-into-qlikview/m-p/1509843#M436573</link>
      <description>&lt;P&gt;Hi Venkey,&lt;/P&gt;&lt;P&gt;You need to start with the wizard &amp;amp; work from there.&lt;/P&gt;&lt;P&gt;So step 1 - it looks like tab delimited, is that right? If so then is there data you need in top left red box? If not you can use header size (6 lines) &amp;amp; labels (embedded labels)&amp;nbsp;to pick the headings out.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="1509758.png" style="width: 999px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/659iFCD3DBC4F51D8E1C/image-size/large?v=v2&amp;amp;px=999" role="button" title="1509758.png" alt="1509758.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;You would then be looking for a field that is populated on all rows you want to keep to filter (CoCd maybe).&lt;/P&gt;&lt;P&gt;If you do need data from top left you will need to manually name your fields and use the transformation steps further on in the wizard.&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Chris.&lt;/P&gt;</description>
      <pubDate>Tue, 20 Nov 2018 15:05:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-load-data-with-string-from-text-file-into-qlikview/m-p/1509843#M436573</guid>
      <dc:creator>chrismarlow</dc:creator>
      <dc:date>2018-11-20T15:05:24Z</dc:date>
    </item>
    <item>
      <title>Re: How to load data with string from text file into qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-load-data-with-string-from-text-file-into-qlikview/m-p/1509957#M436576</link>
      <description>&lt;P&gt;1. Your text file contains blocks of 65 lines each.&lt;BR /&gt;2. Each data line is longer than 42 characters.&lt;/P&gt;&lt;P&gt;This will allow you to load the file as follows:&lt;/P&gt;&lt;P&gt;INPUT:&lt;BR /&gt;LOAD&lt;BR /&gt;RowNo() &amp;amp; Line as Line&lt;BR /&gt;Where LineNoInBlock&amp;gt;6 and LenOfLine&amp;gt;42;&lt;BR /&gt;LOAD&lt;BR /&gt;Mod(RecNo()-1,65) as LineNoInBlock,&lt;BR /&gt;Len([@1:n]) as LenOfLine,&lt;BR /&gt;[@1:n] as Line&lt;BR /&gt;FROM [.\Test data.txt](fix, unicode, no labels);&lt;/P&gt;&lt;P&gt;DATA:&lt;BR /&gt;LOAD *&lt;BR /&gt;From_Field('INPUT','Line')(txt, no labels, delimiter is '\t', msq);&lt;/P&gt;&lt;P&gt;DROP Table INPUT;&lt;/P&gt;&lt;P&gt;RENAME Fields&lt;BR /&gt;@1 to RowNo,&lt;BR /&gt;@2 to [Alt Reference Number],&lt;BR /&gt;@3 to [Base Amount in F.Crcy],&lt;BR /&gt;@4 to [Business PartnerName],&lt;BR /&gt;...&lt;/P&gt;</description>
      <pubDate>Tue, 20 Nov 2018 17:58:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-load-data-with-string-from-text-file-into-qlikview/m-p/1509957#M436576</guid>
      <dc:creator>cwolf</dc:creator>
      <dc:date>2018-11-20T17:58:28Z</dc:date>
    </item>
  </channel>
</rss>

