<?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: How can i export data into .csv format..? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-can-i-export-data-into-csv-format/m-p/484986#M685540</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mohan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; Simple default functionality of qlikview you can use. Right Click on Table go to &lt;STRONG&gt;Export Option&lt;/STRONG&gt; then it will ask where to save there choose &lt;STRONG&gt;CSV&lt;/STRONG&gt; from the &lt;STRONG&gt;Save As Type&lt;/STRONG&gt; and save.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 09 Jan 2014 05:43:10 GMT</pubDate>
    <dc:creator />
    <dc:date>2014-01-09T05:43:10Z</dc:date>
    <item>
      <title>How can i export data into .csv format..?</title>
      <link>https://community.qlik.com/t5/QlikView/How-can-i-export-data-into-csv-format/m-p/484983#M685534</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;Please help me out...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank&lt;/P&gt;&lt;P&gt;RMB&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Jan 2014 05:28:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-can-i-export-data-into-csv-format/m-p/484983#M685534</guid>
      <dc:creator />
      <dc:date>2014-01-09T05:28:36Z</dc:date>
    </item>
    <item>
      <title>Re: How can i export data into .csv format..?</title>
      <link>https://community.qlik.com/t5/QlikView/How-can-i-export-data-into-csv-format/m-p/484984#M685536</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mohan babu&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try This Macro for export your data into .csv format&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 12pt; font-family: inherit;"&gt;Add a Button to trigger the Macro.&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 12pt; font-family: inherit;"&gt;First you have to Set Variable to pass to the macro as it is not allowed to pass variables in the macro call.&amp;nbsp;&amp;nbsp; (vMCont and &lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: inherit; color: black;"&gt;vMTab)&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 12pt; font-family: inherit;"&gt;vMCont = container Object ID&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 12pt; font-family: inherit; color: black;"&gt;vMTab = See Container&amp;nbsp; - General - Label for Selected Item&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 12pt; font-family: inherit; color: black;"&gt;Run macro = SetTabInContainer&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 12pt; font-family: inherit; color: black;"&gt;Paste following code in to the macro editor&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 12pt; font-family: inherit; color: black;"&gt;Sub SetTabInContainer&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Set Container = ActiveDocument.Variables("vMCont")&lt;BR /&gt;Set Tab = ActiveDocument.Variables("vMTab")&lt;BR /&gt;Call InteranlSetTabInContainer(Container.GetContent.string,Tab.GetContent.string)&lt;BR /&gt;&lt;BR /&gt;end sub&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Sub InteranlSetTabInContainer (Container, Cname)&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;NewIndex = 0&lt;BR /&gt;&lt;BR /&gt;Set ContainerObj = ActiveDocument.GetSheetObject(Container)&lt;BR /&gt;set ContProp=ContainerObj.GetProperties &lt;BR /&gt;&lt;BR /&gt;for i = 0 to ContProp.ContainedObjects.Count - 1 &lt;BR /&gt;&lt;BR /&gt;if ContProp.ContainedObjects.Item(i).Text.v = Cname then&lt;BR /&gt;NewIndex = i&lt;BR /&gt;End IF&lt;BR /&gt;&lt;BR /&gt;next&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;ContProp.SingleObjectActiveIndex = NewIndex&lt;BR /&gt;ContainerObj.SetProperties ContProp&lt;BR /&gt;&lt;BR /&gt;end Sub&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Jan 2014 05:33:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-can-i-export-data-into-csv-format/m-p/484984#M685536</guid>
      <dc:creator />
      <dc:date>2014-01-09T05:33:49Z</dc:date>
    </item>
    <item>
      <title>Re: How can i export data into .csv format..?</title>
      <link>https://community.qlik.com/t5/QlikView/How-can-i-export-data-into-csv-format/m-p/484985#M685538</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Right Click---&amp;gt; Export--&amp;gt; Save As (CSV)&amp;nbsp;&amp;nbsp; (Right click on the Chart Object)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Selva&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Jan 2014 05:35:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-can-i-export-data-into-csv-format/m-p/484985#M685538</guid>
      <dc:creator />
      <dc:date>2014-01-09T05:35:53Z</dc:date>
    </item>
    <item>
      <title>Re: How can i export data into .csv format..?</title>
      <link>https://community.qlik.com/t5/QlikView/How-can-i-export-data-into-csv-format/m-p/484986#M685540</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mohan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; Simple default functionality of qlikview you can use. Right Click on Table go to &lt;STRONG&gt;Export Option&lt;/STRONG&gt; then it will ask where to save there choose &lt;STRONG&gt;CSV&lt;/STRONG&gt; from the &lt;STRONG&gt;Save As Type&lt;/STRONG&gt; and save.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Jan 2014 05:43:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-can-i-export-data-into-csv-format/m-p/484986#M685540</guid>
      <dc:creator />
      <dc:date>2014-01-09T05:43:10Z</dc:date>
    </item>
    <item>
      <title>Re: How can i export data into .csv format..?</title>
      <link>https://community.qlik.com/t5/QlikView/How-can-i-export-data-into-csv-format/m-p/484987#M685542</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Guys..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Jan 2014 05:43:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-can-i-export-data-into-csv-format/m-p/484987#M685542</guid>
      <dc:creator />
      <dc:date>2014-01-09T05:43:45Z</dc:date>
    </item>
    <item>
      <title>Re: How can i export data into .csv format..?</title>
      <link>https://community.qlik.com/t5/QlikView/How-can-i-export-data-into-csv-format/m-p/484988#M685544</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Welcome. Check on the Correct Answer. it helps others.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Jan 2014 05:45:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-can-i-export-data-into-csv-format/m-p/484988#M685544</guid>
      <dc:creator />
      <dc:date>2014-01-09T05:45:27Z</dc:date>
    </item>
    <item>
      <title>Re: How can i export data into .csv format..?</title>
      <link>https://community.qlik.com/t5/QlikView/How-can-i-export-data-into-csv-format/m-p/484989#M685545</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Close this thread by marking correct answer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Jan 2014 06:01:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-can-i-export-data-into-csv-format/m-p/484989#M685545</guid>
      <dc:creator />
      <dc:date>2014-01-09T06:01:11Z</dc:date>
    </item>
    <item>
      <title>Re: How can i export data into .csv format..?</title>
      <link>https://community.qlik.com/t5/QlikView/How-can-i-export-data-into-csv-format/m-p/484990#M685546</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;If you want to store a complete table into a .csv during a reload you can use the STORE function in the script.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;STORE&amp;nbsp; mytable into mytable.txt (txt);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will create a comma separated txt file.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Jan 2014 07:42:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-can-i-export-data-into-csv-format/m-p/484990#M685546</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-01-09T07:42:09Z</dc:date>
    </item>
  </channel>
</rss>

