<?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 AW:Re: Store into text file with filters in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Store-into-text-file-with-filters/m-p/174408#M43253</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;this is what i need too!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;store into txt without field names.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 23 Nov 2010 10:32:05 GMT</pubDate>
    <dc:creator>ManuelRühl</dc:creator>
    <dc:date>2010-11-23T10:32:05Z</dc:date>
    <item>
      <title>Store into text file with filters</title>
      <link>https://community.qlik.com/t5/QlikView/Store-into-text-file-with-filters/m-p/174404#M43249</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi!&lt;/P&gt;&lt;P&gt;I need to store some fields from a table into a text file. Do anybody know if it's possible to use filters in the store into statement? I tried this, no error in script but the outcome was not the expected. It was suppose to keep the cells i column 3 (field 3) that contained % and delete the ones that started with 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;B&gt;&lt;/B&gt;&lt;P style="font-weight: bold"&gt;store&lt;/P&gt;&lt;B&gt;&lt;/B&gt;&lt;P style="font-weight: bold"&gt;&lt;/P&gt;field1, field2, field3 &lt;B&gt;from&lt;/B&gt; table1 &lt;B&gt;into&lt;/B&gt; file.trn&lt;BR /&gt;(txt, delimiter is '|', embedded labels, filters(&lt;BR /&gt;Remove(Row, RowCnd(CellValue, 3, StrCnd(end, '%', not))),&lt;BR /&gt;Remove(Row, RowCnd(CellValue, 3, StrCnd(start, '0'))))); &lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;&lt;/P&gt;&lt;P&gt;I use version 9.0.7320.7 SR2, can an upgrade solve the problem?&lt;/P&gt;&lt;P&gt;Thanx!&lt;/P&gt;&lt;P&gt;/Kristofer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Aug 2010 13:37:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Store-into-text-file-with-filters/m-p/174404#M43249</guid>
      <dc:creator />
      <dc:date>2010-08-25T13:37:11Z</dc:date>
    </item>
    <item>
      <title>Store into text file with filters</title>
      <link>https://community.qlik.com/t5/QlikView/Store-into-text-file-with-filters/m-p/174405#M43250</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Kristofer,&lt;/P&gt;&lt;P&gt;You can work around that by creating a new table with the proper field formats, store it and drop it avoiding unneeded syn tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;ToStoreTemp:LOAD field1, field2, field3 RESIDENT Table WHERE Left(field3, 1) &amp;lt;&amp;gt; 0 AND Index(field3, '%') &amp;gt; 0; STORE ToStoreTemp INTO File.txt (txt); DROP TABLE ToStoreTemp:&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Aug 2010 13:48:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Store-into-text-file-with-filters/m-p/174405#M43250</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2010-08-25T13:48:11Z</dc:date>
    </item>
    <item>
      <title>Store into text file with filters</title>
      <link>https://community.qlik.com/t5/QlikView/Store-into-text-file-with-filters/m-p/174406#M43251</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi!&lt;/P&gt;&lt;P&gt;Thanx for your answer.&lt;/P&gt;&lt;P&gt;That's the work around I use in my script now, but if you could use filters in the store into statement you probebly save some loading time if you got large tables.&lt;/P&gt;&lt;P&gt;/Kristofer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Aug 2010 13:57:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Store-into-text-file-with-filters/m-p/174406#M43251</guid>
      <dc:creator />
      <dc:date>2010-08-25T13:57:22Z</dc:date>
    </item>
    <item>
      <title>Store into text file with filters</title>
      <link>https://community.qlik.com/t5/QlikView/Store-into-text-file-with-filters/m-p/174407#M43252</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi!&lt;/P&gt;&lt;P&gt;Another thought could u store files (qvd/txt) without lables?&lt;/P&gt;&lt;P&gt;Exemple:&lt;/P&gt;&lt;P&gt;Field1 | Field 2&lt;BR /&gt;1 | a&lt;BR /&gt;2 | b&lt;BR /&gt;3 | c&lt;/P&gt;&lt;P&gt;Becomes:&lt;/P&gt;&lt;P&gt;1 | a&lt;BR /&gt;2 | b&lt;BR /&gt;3 | c&lt;/P&gt;&lt;P&gt;/Kristofer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Aug 2010 14:15:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Store-into-text-file-with-filters/m-p/174407#M43252</guid>
      <dc:creator />
      <dc:date>2010-08-25T14:15:46Z</dc:date>
    </item>
    <item>
      <title>AW:Re: Store into text file with filters</title>
      <link>https://community.qlik.com/t5/QlikView/Store-into-text-file-with-filters/m-p/174408#M43253</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;this is what i need too!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;store into txt without field names.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Nov 2010 10:32:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Store-into-text-file-with-filters/m-p/174408#M43253</guid>
      <dc:creator>ManuelRühl</dc:creator>
      <dc:date>2010-11-23T10:32:05Z</dc:date>
    </item>
    <item>
      <title>AW:Re: Store into text file with filters</title>
      <link>https://community.qlik.com/t5/QlikView/Store-into-text-file-with-filters/m-p/174409#M43254</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try a batch file that strips the header. Like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;&lt;BR /&gt;type data.txt | find /V "Field1|Field2" &amp;gt; noheader.txt&lt;BR /&gt;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;-Alex&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Nov 2010 11:02:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Store-into-text-file-with-filters/m-p/174409#M43254</guid>
      <dc:creator />
      <dc:date>2010-11-23T11:02:52Z</dc:date>
    </item>
    <item>
      <title>AW:Re: Store into text file with filters</title>
      <link>https://community.qlik.com/t5/QlikView/Store-into-text-file-with-filters/m-p/174410#M43255</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'd try this way too, meaning something external to QlikView, since QVD/TXT QlikView stored files use the field names to allow further retrieving of data (as any other database does), and it wouldn't make any sense without them.&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Nov 2010 11:20:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Store-into-text-file-with-filters/m-p/174410#M43255</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2010-11-23T11:20:38Z</dc:date>
    </item>
    <item>
      <title>AW:Re: Store into text file with filters</title>
      <link>https://community.qlik.com/t5/QlikView/Store-into-text-file-with-filters/m-p/174411#M43256</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi!&lt;/P&gt;&lt;P&gt;I found this makro by Nimish Shah useful. That solved my problems.&lt;/P&gt;&lt;P&gt;/Kristofer&lt;B&gt;&lt;/B&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Nov 2010 11:30:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Store-into-text-file-with-filters/m-p/174411#M43256</guid>
      <dc:creator />
      <dc:date>2010-11-23T11:30:56Z</dc:date>
    </item>
    <item>
      <title>AW:Re: Store into text file with filters</title>
      <link>https://community.qlik.com/t5/QlikView/Store-into-text-file-with-filters/m-p/174412#M43257</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;119 lines of Macro + have Excel installed&lt;/P&gt;&lt;P&gt;versus&lt;/P&gt;&lt;P&gt;one line batch file that does the same&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Smile" src="http://community.qlik.com/emoticons/emotion-1.gif" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Nov 2010 12:44:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Store-into-text-file-with-filters/m-p/174412#M43257</guid>
      <dc:creator />
      <dc:date>2010-11-23T12:44:17Z</dc:date>
    </item>
  </channel>
</rss>

