<?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 textfile into field? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Loading-textfile-into-field/m-p/813684#M665523</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sylvia,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am looking for a similar requirement in Qlik Sense, where the contents of a text file need to be shown in the text box in front end and this content is updated regularly so the process should be as dynamic as possible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Did you find a solution to this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;Deepti&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 08 Nov 2018 14:41:54 GMT</pubDate>
    <dc:creator>deepti_singh</dc:creator>
    <dc:date>2018-11-08T14:41:54Z</dc:date>
    <item>
      <title>Loading textfile into field?</title>
      <link>https://community.qlik.com/t5/QlikView/Loading-textfile-into-field/m-p/813680#M665519</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;Is it possible to load a complete textfile into a field? I have a folder with textfiles (unstructured data) and would like to load each textfile into a field, &lt;STRONG&gt;not&lt;/STRONG&gt; line by line, but the full textfile, from start to end of file. Is there any limitation on how long a string in a field can be? Some of the textfiles is several megabytes in size.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Grateful for any input!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TIA&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ola&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Jan 2015 14:17:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Loading-textfile-into-field/m-p/813680#M665519</guid>
      <dc:creator>Amphan</dc:creator>
      <dc:date>2015-01-19T14:17:02Z</dc:date>
    </item>
    <item>
      <title>Re: Loading textfile into field?</title>
      <link>https://community.qlik.com/t5/QlikView/Loading-textfile-into-field/m-p/813681#M665520</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It is not reccomanded, performances decrease, use a text box instead and fill it only when user select one row.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In these cases the best is to use "Direct Discovery" ... look for it&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Jan 2015 14:43:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Loading-textfile-into-field/m-p/813681#M665520</guid>
      <dc:creator>alexandros17</dc:creator>
      <dc:date>2015-01-19T14:43:57Z</dc:date>
    </item>
    <item>
      <title>Re: Loading textfile into field?</title>
      <link>https://community.qlik.com/t5/QlikView/Loading-textfile-into-field/m-p/813682#M665521</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The real question here is, why should you want to do this?? If it is a simple matter of being able to look at the text file, simply host the files somewhere and include a link in QlikView which will open/download the file. Should you want to interact with the contents, e.g. search the text, there seems no reason not to load line by line. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also instead of lines of text, consider splitting it even further up by word. The following is some load script I use to create a word cloud.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;O_file:&lt;/P&gt;&lt;P&gt;crosstable(OpenQuestions,Verbatim,2)&lt;/P&gt;&lt;P&gt;LOAD @1:8T as ID,&lt;/P&gt;&lt;P&gt;@1:8T&amp;amp;@13:17 as QID,&lt;/P&gt;&lt;P&gt;if(@13:17='Question 1',@20:n) as Question_1&lt;/P&gt;&lt;P&gt;FROM Data.txt(ansi, fix, no labels, header is 0, record is line);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Words:&lt;/P&gt;&lt;P&gt;LOAD QID, mapsubstring('TextMap',subfield(capitalize(keepchar(upper(Verbatim),'ABCDEFGHIJKLMNOPQRSTUVWXYZ ')),' ')) as Word&lt;/P&gt;&lt;P&gt;RESIDENT O_file;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INNER JOIN (Words)&lt;/P&gt;&lt;P&gt;LOAD QID, Word&lt;/P&gt;&lt;P&gt;RESIDENT Words;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Jan 2015 15:07:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Loading-textfile-into-field/m-p/813682#M665521</guid>
      <dc:creator>stigchel</dc:creator>
      <dc:date>2015-01-19T15:07:07Z</dc:date>
    </item>
    <item>
      <title>Re: Loading textfile into field?</title>
      <link>https://community.qlik.com/t5/QlikView/Loading-textfile-into-field/m-p/813683#M665522</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a similar problem.&amp;nbsp; Why am I loading text data from SQL into Qlik Sense?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Because I am trying to incorporate help text on a separate Qlik Sense Sheet for new users to understand and consume the information in the dashboards.&amp;nbsp; &lt;BR /&gt;These are mostly new individuals to our organization.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Other than entering a limited text to each sheet, is there any way to provide context sensitive help to a Qlik Sense Application or Sheet?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Feb 2016 20:26:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Loading-textfile-into-field/m-p/813683#M665522</guid>
      <dc:creator />
      <dc:date>2016-02-24T20:26:59Z</dc:date>
    </item>
    <item>
      <title>Re: Loading textfile into field?</title>
      <link>https://community.qlik.com/t5/QlikView/Loading-textfile-into-field/m-p/813684#M665523</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sylvia,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am looking for a similar requirement in Qlik Sense, where the contents of a text file need to be shown in the text box in front end and this content is updated regularly so the process should be as dynamic as possible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Did you find a solution to this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;Deepti&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Nov 2018 14:41:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Loading-textfile-into-field/m-p/813684#M665523</guid>
      <dc:creator>deepti_singh</dc:creator>
      <dc:date>2018-11-08T14:41:54Z</dc:date>
    </item>
  </channel>
</rss>

