<?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 Export to text file with fixed length data in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Export-to-text-file-with-fixed-length-data/m-p/501849#M686097</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 have written a macro to export the straight table in a qvw to a flat file (.txt) file and was able to specify the delimiter i wish to.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The macro which i used is as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sub Export&lt;/P&gt;&lt;P&gt;Dim docProp&lt;/P&gt;&lt;P&gt;set docProp = ActiveDocument.GetProperties&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Dim tmpFile&amp;nbsp; 'used to create relative filepaths&lt;/P&gt;&lt;P&gt;tmpFile = docProp.MyWorkingDirectory&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tmpFile = tmpFile &amp;amp; "External Data Sources\OperationalReportsOutput\"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;set obj = ActiveDocument.GetSheetObject("CH01")&lt;/P&gt;&lt;P&gt;obj.Export tmpFile &amp;amp; "Activity" &amp;amp; ".txt",";" &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;end sub&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now i have to change the output data to a fixed length datatype. It means for suppose, i have 3 fields&lt;/P&gt;&lt;P&gt;Name&amp;nbsp; Address&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Phonenumber&lt;/P&gt;&lt;P&gt;Sam&amp;nbsp;&amp;nbsp;&amp;nbsp; Greenville,USA&amp;nbsp;&amp;nbsp;&amp;nbsp; 2159627856&lt;/P&gt;&lt;P&gt;Vizard Charlotte, USA&amp;nbsp;&amp;nbsp;&amp;nbsp; 2527255632&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If i gave a fixed length of 20 to the fields:and i specify no delimiter,&lt;/P&gt;&lt;P&gt;the output should look like &lt;/P&gt;&lt;P&gt;Sam&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Greenville,USA&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2139627856&lt;/P&gt;&lt;P&gt;Vizard&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Charlotte,USA&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2527255632&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So every record in the text file should end at the same point.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any ideas!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 18 Dec 2013 14:41:28 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2013-12-18T14:41:28Z</dc:date>
    <item>
      <title>Export to text file with fixed length data</title>
      <link>https://community.qlik.com/t5/QlikView/Export-to-text-file-with-fixed-length-data/m-p/501849#M686097</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 have written a macro to export the straight table in a qvw to a flat file (.txt) file and was able to specify the delimiter i wish to.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The macro which i used is as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sub Export&lt;/P&gt;&lt;P&gt;Dim docProp&lt;/P&gt;&lt;P&gt;set docProp = ActiveDocument.GetProperties&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Dim tmpFile&amp;nbsp; 'used to create relative filepaths&lt;/P&gt;&lt;P&gt;tmpFile = docProp.MyWorkingDirectory&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tmpFile = tmpFile &amp;amp; "External Data Sources\OperationalReportsOutput\"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;set obj = ActiveDocument.GetSheetObject("CH01")&lt;/P&gt;&lt;P&gt;obj.Export tmpFile &amp;amp; "Activity" &amp;amp; ".txt",";" &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;end sub&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now i have to change the output data to a fixed length datatype. It means for suppose, i have 3 fields&lt;/P&gt;&lt;P&gt;Name&amp;nbsp; Address&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Phonenumber&lt;/P&gt;&lt;P&gt;Sam&amp;nbsp;&amp;nbsp;&amp;nbsp; Greenville,USA&amp;nbsp;&amp;nbsp;&amp;nbsp; 2159627856&lt;/P&gt;&lt;P&gt;Vizard Charlotte, USA&amp;nbsp;&amp;nbsp;&amp;nbsp; 2527255632&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If i gave a fixed length of 20 to the fields:and i specify no delimiter,&lt;/P&gt;&lt;P&gt;the output should look like &lt;/P&gt;&lt;P&gt;Sam&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Greenville,USA&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2139627856&lt;/P&gt;&lt;P&gt;Vizard&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Charlotte,USA&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2527255632&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So every record in the text file should end at the same point.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any ideas!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Dec 2013 14:41:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-to-text-file-with-fixed-length-data/m-p/501849#M686097</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-12-18T14:41:28Z</dc:date>
    </item>
    <item>
      <title>Re: Export to text file with fixed length data</title>
      <link>https://community.qlik.com/t5/QlikView/Export-to-text-file-with-fixed-length-data/m-p/501850#M686098</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You could do this by creating a straight table with only one expression that concatenates the fields into one string :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;= left(Name,20) &amp;amp; repeat(' ', 20-len(Name1)) &amp;amp;&amp;nbsp; left(Address,20) &amp;amp; repeat(' ', 20-len(Address)) &amp;amp;&amp;nbsp; left(Phonenumber,20) &amp;amp; repeat(' ', 20-len(Phonenumber)).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then export that straight table.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Dec 2013 14:45:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-to-text-file-with-fixed-length-data/m-p/501850#M686098</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2013-12-18T14:45:50Z</dc:date>
    </item>
    <item>
      <title>Re: Export to text file with fixed length data</title>
      <link>https://community.qlik.com/t5/QlikView/Export-to-text-file-with-fixed-length-data/m-p/501851#M686099</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gysbert Wassenaar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That was a helpful solution, but they just want to know is it possible to do it in the macro so that the output file shows the data in the way they wish, without any change to the straight table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can i specify it in the macro! i have no idea!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Dec 2013 14:56:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-to-text-file-with-fixed-length-data/m-p/501851#M686099</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-12-18T14:56:13Z</dc:date>
    </item>
    <item>
      <title>Re: Export to text file with fixed length data</title>
      <link>https://community.qlik.com/t5/QlikView/Export-to-text-file-with-fixed-length-data/m-p/501852#M686100</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In Qlikview, we don't have data types for fixed length fields. I suggest Please follow &lt;SPAN class="j-post-author" style="font-size: 0.9em; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&lt;A href="https://community.qlik.com/people/gwassenaar"&gt;gwassenaar&lt;/A&gt;&lt;/STRONG&gt;Method or create the fixed length fields in the script it self.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD IF(Len(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Name) &amp;gt; 20, LEFT(Name,20) , Name &amp;amp; Repeat(' ', 20-Len(Name)) ) AS Name,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; IF(Len(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Address&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;) &amp;gt; 20, LEFT(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Address&lt;/SPAN&gt;,20) , &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Address&lt;/SPAN&gt;&amp;amp; Repeat(' ', 20-Len(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Address&lt;/SPAN&gt;)) ) AS &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Address&lt;/SPAN&gt;&lt;/SPAN&gt;,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; IF(Len(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Phonenumber&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;) &amp;gt; 20, LEFT(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Phonenumber&lt;/SPAN&gt;,20) , Name &amp;amp; Repeat(' ', 20-Len(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Phonenumber&lt;/SPAN&gt;)) ) AS &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Phonenumber&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;SOURCE;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="j-post-author" style="font-size: 0.9em; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Dec 2013 15:35:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-to-text-file-with-fixed-length-data/m-p/501852#M686100</guid>
      <dc:creator />
      <dc:date>2013-12-18T15:35:46Z</dc:date>
    </item>
    <item>
      <title>Re: Export to text file with fixed length data</title>
      <link>https://community.qlik.com/t5/QlikView/Export-to-text-file-with-fixed-length-data/m-p/501853#M686101</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You don't have to change the original straight table. Create another straight table and hide it. Just make the button (or whatever) that calls the macro export the hidden straight table instead of exporting the original one.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Dec 2013 15:39:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-to-text-file-with-fixed-length-data/m-p/501853#M686101</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2013-12-18T15:39:40Z</dc:date>
    </item>
    <item>
      <title>Re: Export to text file with fixed length data</title>
      <link>https://community.qlik.com/t5/QlikView/Export-to-text-file-with-fixed-length-data/m-p/501854#M686102</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Dathu&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for your suggestion. I don't need the fixed length in qlikview. What i am asking is can we define the fixed length field while exporting to a text file. I mean it in the macro script. Just want to know can we do it in vbscript! If no other option is availabe, i can go with Gysbert Wassenaar's method.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Dec 2013 15:49:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-to-text-file-with-fixed-length-data/m-p/501854#M686102</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-12-18T15:49:35Z</dc:date>
    </item>
    <item>
      <title>Re: Export to text file with fixed length data</title>
      <link>https://community.qlik.com/t5/QlikView/Export-to-text-file-with-fixed-length-data/m-p/501855#M686103</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Gysbert Wassenaar&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have tried the method you said, by creating a new straight table with just one expression. But it is showing the output only when one Name or only one phonenumber is selected. without any selections, it is showing nothing!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do i need to change something!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Dec 2013 16:16:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-to-text-file-with-fixed-length-data/m-p/501855#M686103</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-12-18T16:16:32Z</dc:date>
    </item>
    <item>
      <title>Re: Export to text file with fixed length data</title>
      <link>https://community.qlik.com/t5/QlikView/Export-to-text-file-with-fixed-length-data/m-p/501856#M686104</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ah, my mistake. Here's what you can do: Create a calculated dimension using the expression I posted. Then add an expression to the straight table, for example just 1 as expression will do. Set the total mode to None and then hide the expression on the presentation tab. The straight table with just that calculated dimension and the hidden expression should result in a table that will export to the format you want.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Dec 2013 16:35:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-to-text-file-with-fixed-length-data/m-p/501856#M686104</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2013-12-18T16:35:50Z</dc:date>
    </item>
    <item>
      <title>Re: Export to text file with fixed length data</title>
      <link>https://community.qlik.com/t5/QlikView/Export-to-text-file-with-fixed-length-data/m-p/501857#M686105</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am using a aggregation function in the expression.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=&amp;nbsp; left(TlrNbr,20) &amp;amp; repeat(' ', 20-len(TlrNbr)) &amp;amp;&amp;nbsp; left(TlrName,20) &amp;amp; repeat(' ', 20-len(TlrName)) &amp;amp; left(Count(BrAccount),20) &amp;amp; repeat(' ', 20-len(Count(BrAccount)))&lt;/P&gt;&lt;P&gt;So, i think we cannot use it as a calculated dimension.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Dec 2013 16:42:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-to-text-file-with-fixed-length-data/m-p/501857#M686105</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-12-18T16:42:03Z</dc:date>
    </item>
    <item>
      <title>Re: Export to text file with fixed length data</title>
      <link>https://community.qlik.com/t5/QlikView/Export-to-text-file-with-fixed-length-data/m-p/501858#M686106</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try replacing count(BrAccount) with aggr(Count(BrAccount),TlrNbr,TlrName)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Dec 2013 16:45:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-to-text-file-with-fixed-length-data/m-p/501858#M686106</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2013-12-18T16:45:06Z</dc:date>
    </item>
    <item>
      <title>Re: Export to text file with fixed length data</title>
      <link>https://community.qlik.com/t5/QlikView/Export-to-text-file-with-fixed-length-data/m-p/501859#M686107</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, It is working. Thank You &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Dec 2013 17:02:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-to-text-file-with-fixed-length-data/m-p/501859#M686107</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-12-18T17:02:20Z</dc:date>
    </item>
    <item>
      <title>Re: Export to text file with fixed length data</title>
      <link>https://community.qlik.com/t5/QlikView/Export-to-text-file-with-fixed-length-data/m-p/501860#M686108</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;But just as a question, can we do it in macro! i mean fixed length fields while exporting &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Dec 2013 20:03:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-to-text-file-with-fixed-length-data/m-p/501860#M686108</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-12-18T20:03:40Z</dc:date>
    </item>
    <item>
      <title>Re: Export to text file with fixed length data</title>
      <link>https://community.qlik.com/t5/QlikView/Export-to-text-file-with-fixed-length-data/m-p/501861#M686109</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes. Macro's are just vbscript. Find a good vbscript site to find out how to manipulate strings and write them to a file.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Dec 2013 06:47:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-to-text-file-with-fixed-length-data/m-p/501861#M686109</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2013-12-19T06:47:55Z</dc:date>
    </item>
  </channel>
</rss>

