<?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 Create txt files without the header using the script. in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Create-txt-files-without-the-header-using-the-script/m-p/163446#M36545</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rahman,&lt;/P&gt;&lt;P&gt;I have the following macro that works fine running from Excel. But when I try to use it from Qlikview, it gives me an error at the statement CreateObject("Scripting.FileSystemObject").&lt;BR /&gt;I am still working on it, but if you have a tip, please, tell me, because my deadline is near.&lt;/P&gt;&lt;P&gt;Function RemoveHeader()&lt;BR /&gt;&lt;BR /&gt; Dim oFSO, oFSO2, sText, oFile, oFile2, Count&lt;BR /&gt; Dim sFile, sFile2&lt;BR /&gt;&lt;BR /&gt; sFile = "c:/temp/temp1.txt"&lt;BR /&gt; sFile2 = "c:/temp/temp2.txt"&lt;BR /&gt;&lt;BR /&gt; Set oFSO = CreateObject("Scripting.FileSystemObject")&lt;BR /&gt; Set oFSO2 = CreateObject("Scripting.FileSystemObject")&lt;BR /&gt;&lt;BR /&gt; Set oFile2 = oFSO2.CreateTextFile(sFile2)&lt;BR /&gt;&lt;BR /&gt; Count = 1&lt;BR /&gt; If oFSO.FileExists(sFile) Then&lt;BR /&gt; Set oFile = oFSO.OpenTextFile(sFile, 1)&lt;BR /&gt; Do While Not oFile.AtEndOfStream&lt;BR /&gt; sText = oFile.ReadLine&lt;BR /&gt; if Count &amp;gt; 1 then&lt;BR /&gt; oFile2.WriteLine (sText)&lt;BR /&gt; end if&lt;BR /&gt; Count = Count + 1&lt;BR /&gt; Loop&lt;BR /&gt; oFile.Close&lt;BR /&gt; oFile2.Close&lt;BR /&gt; End If&lt;BR /&gt;End Function&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tks,&lt;/P&gt;&lt;P&gt;Marcelo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 07 Jun 2010 15:10:10 GMT</pubDate>
    <dc:creator />
    <dc:date>2010-06-07T15:10:10Z</dc:date>
    <item>
      <title>Create txt files without the header using the script.</title>
      <link>https://community.qlik.com/t5/QlikView/Create-txt-files-without-the-header-using-the-script/m-p/163442#M36541</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, everyone!&lt;/P&gt;&lt;P&gt;How are you? I am new with QlikView, but I already have a doubt. I'd appreciate if someone could help me.&lt;/P&gt;&lt;P&gt;I need to convert a txt file into another txt file. No problems with it. I can inform the directory, read all the input files, process the information and generate the new formatted output files. I am doing it in the script level. The problem is that the output files are created with the first line containing a header. I don't want the header. I am using the STORE command. Is there any way to store my data without the header?&lt;/P&gt;&lt;P&gt;I can do it using a buttom with a export action. There is a setup to do it. But I can't use this buttom because there won't be a user to do it. The idea is to have the script run automatically every evening. Can I "hit" the buttom at the script level?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tks in advance,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Marcelo - from Brazil&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 May 2010 19:45:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-txt-files-without-the-header-using-the-script/m-p/163442#M36541</guid>
      <dc:creator />
      <dc:date>2010-05-24T19:45:52Z</dc:date>
    </item>
    <item>
      <title>Create txt files without the header using the script.</title>
      <link>https://community.qlik.com/t5/QlikView/Create-txt-files-without-the-header-using-the-script/m-p/163443#M36542</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Marcelo !&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Take a look at the STORE statement. You can dump a table as a plain TXT file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(&lt;/P&gt;&lt;P&gt;Marcelo :&lt;/P&gt;&lt;P&gt;Dá uma olhada no comando STORE . Vc consegue jogar uma tabela pra um arquivo texto. Fala de onde ? Eu Piracicaba/interior de Sampa.&lt;/P&gt;&lt;P&gt;Abraço e boa sorte com o QV ! Ótimo produto !&lt;/P&gt;&lt;P&gt;)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 May 2010 19:56:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-txt-files-without-the-header-using-the-script/m-p/163443#M36542</guid>
      <dc:creator />
      <dc:date>2010-05-24T19:56:58Z</dc:date>
    </item>
    <item>
      <title>Create txt files without the header using the script.</title>
      <link>https://community.qlik.com/t5/QlikView/Create-txt-files-without-the-header-using-the-script/m-p/163444#M36543</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;You can use a macro to do this, press CTRL+M to invoke the macro editor.&lt;/P&gt;&lt;P&gt;Then do something 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;Sub Foo&lt;BR /&gt; ActiveDocument.GetSheetObject("BU01").Press&lt;BR /&gt;End Foo&lt;BR /&gt;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;You can get the ObjectId of the button from Document Properties-&amp;gt;Sheets.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, macros slows down the application. If you share your script which exports the text file(s)., a direct resolution could be presented.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 May 2010 20:01:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-txt-files-without-the-header-using-the-script/m-p/163444#M36543</guid>
      <dc:creator>mantaq10</dc:creator>
      <dc:date>2010-05-24T20:01:44Z</dc:date>
    </item>
    <item>
      <title>Create txt files without the header using the script.</title>
      <link>https://community.qlik.com/t5/QlikView/Create-txt-files-without-the-header-using-the-script/m-p/163445#M36544</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, Adriano!&lt;/P&gt;&lt;P&gt;The Store statement creates a header line, this is my problem. I can't have it.&lt;/P&gt;&lt;P&gt;Tks,&lt;/P&gt;&lt;P&gt;Marcelo&lt;/P&gt;&lt;P&gt;"Estou em São Paulo. Entro em contato contigo em private".&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Jun 2010 14:50:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-txt-files-without-the-header-using-the-script/m-p/163445#M36544</guid>
      <dc:creator />
      <dc:date>2010-06-07T14:50:26Z</dc:date>
    </item>
    <item>
      <title>Create txt files without the header using the script.</title>
      <link>https://community.qlik.com/t5/QlikView/Create-txt-files-without-the-header-using-the-script/m-p/163446#M36545</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rahman,&lt;/P&gt;&lt;P&gt;I have the following macro that works fine running from Excel. But when I try to use it from Qlikview, it gives me an error at the statement CreateObject("Scripting.FileSystemObject").&lt;BR /&gt;I am still working on it, but if you have a tip, please, tell me, because my deadline is near.&lt;/P&gt;&lt;P&gt;Function RemoveHeader()&lt;BR /&gt;&lt;BR /&gt; Dim oFSO, oFSO2, sText, oFile, oFile2, Count&lt;BR /&gt; Dim sFile, sFile2&lt;BR /&gt;&lt;BR /&gt; sFile = "c:/temp/temp1.txt"&lt;BR /&gt; sFile2 = "c:/temp/temp2.txt"&lt;BR /&gt;&lt;BR /&gt; Set oFSO = CreateObject("Scripting.FileSystemObject")&lt;BR /&gt; Set oFSO2 = CreateObject("Scripting.FileSystemObject")&lt;BR /&gt;&lt;BR /&gt; Set oFile2 = oFSO2.CreateTextFile(sFile2)&lt;BR /&gt;&lt;BR /&gt; Count = 1&lt;BR /&gt; If oFSO.FileExists(sFile) Then&lt;BR /&gt; Set oFile = oFSO.OpenTextFile(sFile, 1)&lt;BR /&gt; Do While Not oFile.AtEndOfStream&lt;BR /&gt; sText = oFile.ReadLine&lt;BR /&gt; if Count &amp;gt; 1 then&lt;BR /&gt; oFile2.WriteLine (sText)&lt;BR /&gt; end if&lt;BR /&gt; Count = Count + 1&lt;BR /&gt; Loop&lt;BR /&gt; oFile.Close&lt;BR /&gt; oFile2.Close&lt;BR /&gt; End If&lt;BR /&gt;End Function&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tks,&lt;/P&gt;&lt;P&gt;Marcelo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Jun 2010 15:10:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-txt-files-without-the-header-using-the-script/m-p/163446#M36545</guid>
      <dc:creator />
      <dc:date>2010-06-07T15:10:10Z</dc:date>
    </item>
    <item>
      <title>Create txt files without the header using the script.</title>
      <link>https://community.qlik.com/t5/QlikView/Create-txt-files-without-the-header-using-the-script/m-p/163447#M36546</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Marcelo&lt;/P&gt;&lt;P&gt;As a matter of fact STORE does generate a header. It is supposed to be like that.&lt;/P&gt;&lt;P&gt;It's cumbersome, I know.&lt;/P&gt;&lt;P&gt;Take a look a this post :&lt;/P&gt;&lt;P&gt;http://community.qlik.com/forums/t/22658.aspx&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Why dont you do a program that cleans up the header ? Read the file as a string, strip the header and save it back again.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What language do you work with ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See ya !&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Jun 2010 15:15:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-txt-files-without-the-header-using-the-script/m-p/163447#M36546</guid>
      <dc:creator />
      <dc:date>2010-06-07T15:15:51Z</dc:date>
    </item>
    <item>
      <title>Create txt files without the header using the script.</title>
      <link>https://community.qlik.com/t5/QlikView/Create-txt-files-without-the-header-using-the-script/m-p/163448#M36547</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, all!&lt;/P&gt;&lt;P&gt;I solved my problem but with a different solution. I used the first line of the file as the label of my table, that will be exported. And loaded to table from second line to the end of the file. The firs line was used by a variable and used to name the unique column of my table. Sorry my english. I don't know if it is clear for you what I did.&lt;/P&gt;&lt;P&gt;Tks,&lt;/P&gt;&lt;P&gt;Marcelo&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Jun 2010 12:59:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-txt-files-without-the-header-using-the-script/m-p/163448#M36547</guid>
      <dc:creator />
      <dc:date>2010-06-11T12:59:48Z</dc:date>
    </item>
    <item>
      <title>Create txt files without the header using the script.</title>
      <link>https://community.qlik.com/t5/QlikView/Create-txt-files-without-the-header-using-the-script/m-p/163449#M36548</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Nice!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Jun 2010 20:22:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-txt-files-without-the-header-using-the-script/m-p/163449#M36548</guid>
      <dc:creator>fernandotoledo</dc:creator>
      <dc:date>2010-06-11T20:22:55Z</dc:date>
    </item>
    <item>
      <title>Create txt files without the header using the script.</title>
      <link>https://community.qlik.com/t5/QlikView/Create-txt-files-without-the-header-using-the-script/m-p/163450#M36549</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry,&lt;/P&gt;&lt;P&gt;not exactly clear on how you managed to get this working &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you have an example to upload or some code?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just ran in to the same problem.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Jul 2011 12:28:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-txt-files-without-the-header-using-the-script/m-p/163450#M36549</guid>
      <dc:creator />
      <dc:date>2011-07-01T12:28:44Z</dc:date>
    </item>
    <item>
      <title>Create txt files without the header using the script.</title>
      <link>https://community.qlik.com/t5/QlikView/Create-txt-files-without-the-header-using-the-script/m-p/163451#M36550</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 presume he's done something along these lines as the below seems to work for me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;------------------------------------------------------------------&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Temp:&lt;BR /&gt;LOAD * INLINE [&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Number, Letter, Group&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1, a, x&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2, b, x&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 3, c, x&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 4, d, x&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 5, e, x&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1, f, y&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2, g, y&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 3, h, y&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 4, i, y&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 5, j, y&lt;BR /&gt;];&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;let vLabelColumn1 = peek('Number',0,'Temp');&lt;BR /&gt;let vLabelColumn2 = peek('Letter',0,'Temp');&lt;BR /&gt;let vLabelColumn3 = peek('Group',0,'Temp');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table:&lt;BR /&gt;LOAD Number as '$(vLabelColumn1)',&lt;BR /&gt; Letter as '$(vLabelColumn2)',&lt;BR /&gt; [Group] as '$(vLabelColumn3)'&lt;BR /&gt;RESIDENT Temp&lt;BR /&gt;WHERE recno()&amp;gt;1;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;DROP TABLE Temp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;STORE Table into [Table.csv] (txt);&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Oct 2011 10:19:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-txt-files-without-the-header-using-the-script/m-p/163451#M36550</guid>
      <dc:creator />
      <dc:date>2011-10-28T10:19:29Z</dc:date>
    </item>
    <item>
      <title>Re: Create txt files without the header using the script.</title>
      <link>https://community.qlik.com/t5/QlikView/Create-txt-files-without-the-header-using-the-script/m-p/163452#M36551</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;that only works if there are no null values in your first line.&lt;/P&gt;&lt;P&gt;Regards &lt;/P&gt;&lt;P&gt;Sabine&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jan 2013 10:15:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-txt-files-without-the-header-using-the-script/m-p/163452#M36551</guid>
      <dc:creator />
      <dc:date>2013-01-09T10:15:03Z</dc:date>
    </item>
    <item>
      <title>Re: Create txt files without the header using the script.</title>
      <link>https://community.qlik.com/t5/QlikView/Create-txt-files-without-the-header-using-the-script/m-p/163453#M36552</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 had to create a file .dat separated by "|" and with no header. First I store in a 'pass file' than using cmd I create a file with no header using string "TRD|" that does not exist on header but only as a fixed field in the stored table:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;first I created the following table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'TRD' AS TIPO_RECORD, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; field1,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; field2,&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;RESIDENT resident_table;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;STORE PHOTO INTO PASS_FILE.DAT(TXT, delimiter is '|');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET cmd=FINDSTR /C:"TRD|" PASS_FILE.DAT &amp;gt; FILE.DAT;&lt;/P&gt;&lt;P&gt;execute cmd.exe /C $(cmd);&lt;/P&gt;&lt;P&gt;set cmd=;&lt;/P&gt;&lt;P&gt;SET cmd=del PASS_FILE.DAT;&lt;/P&gt;&lt;P&gt;execute cmd.exe /C $(cmd);&lt;/P&gt;&lt;P&gt;set cmd=;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;remember to allow script to execute external program&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Oct 2013 15:53:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-txt-files-without-the-header-using-the-script/m-p/163453#M36552</guid>
      <dc:creator />
      <dc:date>2013-10-08T15:53:22Z</dc:date>
    </item>
    <item>
      <title>Re: Create txt files without the header using the script.</title>
      <link>https://community.qlik.com/t5/QlikView/Create-txt-files-without-the-header-using-the-script/m-p/163454#M36553</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;trying this in a del_header.bat:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Copy &lt;STRONG&gt;FicNameStore&lt;/STRONG&gt; FIC.TRA&lt;/P&gt;&lt;P&gt;Find /V /I "&lt;STRONG&gt;header&lt;/STRONG&gt;" &amp;lt; FIC.TRA &amp;gt; &lt;STRONG&gt;FicNameStore&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Del FIC.TRA&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then execute del_header.bat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Nov 2013 15:04:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-txt-files-without-the-header-using-the-script/m-p/163454#M36553</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-11-14T15:04:51Z</dc:date>
    </item>
    <item>
      <title>Re: Create txt files without the header using the script.</title>
      <link>https://community.qlik.com/t5/QlikView/Create-txt-files-without-the-header-using-the-script/m-p/163455#M36554</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This works perfectly.&amp;nbsp; Thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Aug 2018 20:44:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-txt-files-without-the-header-using-the-script/m-p/163455#M36554</guid>
      <dc:creator>carlcimino</dc:creator>
      <dc:date>2018-08-01T20:44:48Z</dc:date>
    </item>
  </channel>
</rss>

