<?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: script to automatcally generate csv in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/script-to-automatcally-generate-csv/m-p/1632589#M594811</link>
    <description>&lt;P&gt;hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/36343"&gt;@rafael5958&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Could you provide an example of the output you are trying to accomplish?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you .&lt;/P&gt;</description>
    <pubDate>Tue, 08 Oct 2019 14:44:32 GMT</pubDate>
    <dc:creator>NadiaB</dc:creator>
    <dc:date>2019-10-08T14:44:32Z</dc:date>
    <item>
      <title>script to automatcally generate csv</title>
      <link>https://community.qlik.com/t5/QlikView/script-to-automatcally-generate-csv/m-p/1632156#M594806</link>
      <description>&lt;P&gt;Hi, I have an app like in the example, what do I need is a macro/script so I can press a button and automatcally export a table in csv files by month-year. (01/2019, 02/2019, 03/2019.....).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is it possible to do ?&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 02:17:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/script-to-automatcally-generate-csv/m-p/1632156#M594806</guid>
      <dc:creator>rafael5958</dc:creator>
      <dc:date>2024-11-16T02:17:08Z</dc:date>
    </item>
    <item>
      <title>Re: script to automatcally generate csv</title>
      <link>https://community.qlik.com/t5/QlikView/script-to-automatcally-generate-csv/m-p/1632189#M594807</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/36343"&gt;@rafael5958&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is there any specific reason that you want an extra button? You can use the "Export" option from the Access Point that will generate a CSV file for any object.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://help.qlik.com/en-US/qlikview/April2019/Subsystems/Client/Content/QV_QlikView/Export.htm" target="_blank"&gt;https://help.qlik.com/en-US/qlikview/April2019/Subsystems/Client/Content/QV_QlikView/Export.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Kind regards.&lt;/P&gt;</description>
      <pubDate>Mon, 07 Oct 2019 19:43:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/script-to-automatcally-generate-csv/m-p/1632189#M594807</guid>
      <dc:creator>NadiaB</dc:creator>
      <dc:date>2019-10-07T19:43:02Z</dc:date>
    </item>
    <item>
      <title>Re: script to automatcally generate csv</title>
      <link>https://community.qlik.com/t5/QlikView/script-to-automatcally-generate-csv/m-p/1632199#M594808</link>
      <description>&lt;P&gt;No, the button is optional, but I do need to run over all month and years and generate a cvs to each one. I got this so far, but its not working ....&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;sub aa
set table = ActiveDocument.GetSheetObject( "CH01" )

for RowIter = 1 to table.GetRowCount-1
 set cell = table.GetCell(RowIter,2)
set sObject = ActiveDocument.GetSheetObject("TB01")
sObject.Export "d:\"+table.GetCell(RowIter,0).text+"-"+table.GetCell(RowIter,1).text+".csv", ", "

next

end sub&lt;/LI-CODE&gt;</description>
      <pubDate>Mon, 07 Oct 2019 20:00:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/script-to-automatcally-generate-csv/m-p/1632199#M594808</guid>
      <dc:creator>rafael5958</dc:creator>
      <dc:date>2019-10-07T20:00:09Z</dc:date>
    </item>
    <item>
      <title>Re: script to automatcally generate csv</title>
      <link>https://community.qlik.com/t5/QlikView/script-to-automatcally-generate-csv/m-p/1632201#M594809</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/36343"&gt;@rafael5958&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It will be easier to create the object, you just need to create the appropriate expressions.&lt;/P&gt;</description>
      <pubDate>Mon, 07 Oct 2019 20:06:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/script-to-automatcally-generate-csv/m-p/1632201#M594809</guid>
      <dc:creator>NadiaB</dc:creator>
      <dc:date>2019-10-07T20:06:26Z</dc:date>
    </item>
    <item>
      <title>Re: script to automatcally generate csv</title>
      <link>https://community.qlik.com/t5/QlikView/script-to-automatcally-generate-csv/m-p/1632267#M594810</link>
      <description>&lt;P&gt;Could give me a sample? I still didnt get it. lm not an experient qlikview user.&lt;/P&gt;</description>
      <pubDate>Tue, 08 Oct 2019 01:04:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/script-to-automatcally-generate-csv/m-p/1632267#M594810</guid>
      <dc:creator>rafael5958</dc:creator>
      <dc:date>2019-10-08T01:04:30Z</dc:date>
    </item>
    <item>
      <title>Re: script to automatcally generate csv</title>
      <link>https://community.qlik.com/t5/QlikView/script-to-automatcally-generate-csv/m-p/1632589#M594811</link>
      <description>&lt;P&gt;hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/36343"&gt;@rafael5958&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Could you provide an example of the output you are trying to accomplish?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you .&lt;/P&gt;</description>
      <pubDate>Tue, 08 Oct 2019 14:44:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/script-to-automatcally-generate-csv/m-p/1632589#M594811</guid>
      <dc:creator>NadiaB</dc:creator>
      <dc:date>2019-10-08T14:44:32Z</dc:date>
    </item>
    <item>
      <title>Re: script to automatcally generate csv</title>
      <link>https://community.qlik.com/t5/QlikView/script-to-automatcally-generate-csv/m-p/1632598#M594812</link>
      <description>&lt;P&gt;got it on link below . Thanks.&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/t5/QlikView-App-Development/Looping-through-filter-values-and-saving-the-output-to-a-csv/td-p/1206264" target="_blank"&gt;https://community.qlik.com/t5/QlikView-App-Development/Looping-through-filter-values-and-saving-the-output-to-a-csv/td-p/1206264&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 08 Oct 2019 14:52:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/script-to-automatcally-generate-csv/m-p/1632598#M594812</guid>
      <dc:creator>rafael5958</dc:creator>
      <dc:date>2019-10-08T14:52:43Z</dc:date>
    </item>
  </channel>
</rss>

