<?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: Export the specific chart data into excel after reloading data in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Export-the-specific-chart-data-into-excel-after-reloading-data/m-p/815078#M287449</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vimlesh,&lt;/P&gt;&lt;P&gt;I want to export specific chart(straight table) to excel after reloading ,This reloading also happen every day morning times so for every day reloading I have created batch file, So automatically application reloading and excel exporting to specific folder I need.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So how to export excel after reloading.this is my question could you please help on this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Advance Thanks,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Munna&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 02 Jul 2015 10:11:24 GMT</pubDate>
    <dc:creator>Srinivas</dc:creator>
    <dc:date>2015-07-02T10:11:24Z</dc:date>
    <item>
      <title>Export the specific chart data into excel after reloading data</title>
      <link>https://community.qlik.com/t5/QlikView/Export-the-specific-chart-data-into-excel-after-reloading-data/m-p/815074#M287445</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;My requirement is&lt;/P&gt;&lt;P&gt;Export the specific chart data into excel after reloading data, is this possible by using macro.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Mar 2015 06:20:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-the-specific-chart-data-into-excel-after-reloading-data/m-p/815074#M287445</guid>
      <dc:creator>deepakqlikview_123</dc:creator>
      <dc:date>2015-03-30T06:20:22Z</dc:date>
    </item>
    <item>
      <title>Re: Export the specific chart data into excel after reloading data</title>
      <link>https://community.qlik.com/t5/QlikView/Export-the-specific-chart-data-into-excel-after-reloading-data/m-p/815075#M287446</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;yes use trigger to run macro after reload the application.&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-1 jive-image" src="https://community.qlik.com/legacyfs/online/82293_pastedImage_0.png" style="max-width: 1200px; max-height: 900px;" /&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Vimlesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Mar 2015 06:27:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-the-specific-chart-data-into-excel-after-reloading-data/m-p/815075#M287446</guid>
      <dc:creator />
      <dc:date>2015-03-30T06:27:43Z</dc:date>
    </item>
    <item>
      <title>Re: Export the specific chart data into excel after reloading data</title>
      <link>https://community.qlik.com/t5/QlikView/Export-the-specific-chart-data-into-excel-after-reloading-data/m-p/815076#M287447</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes you can. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See this doc &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/docs/DOC-4870"&gt;Useful Qlikview Macros&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &lt;/P&gt;&lt;P&gt;BKC&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Mar 2015 06:28:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-the-specific-chart-data-into-excel-after-reloading-data/m-p/815076#M287447</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-03-30T06:28:14Z</dc:date>
    </item>
    <item>
      <title>Re: Export the specific chart data into excel after reloading data</title>
      <link>https://community.qlik.com/t5/QlikView/Export-the-specific-chart-data-into-excel-after-reloading-data/m-p/815077#M287448</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am using macro as per below&lt;/P&gt;&lt;P&gt;FUNCTION ExcelExport(CH78) set obj = ActiveDocument.GetSheetObject( CH78 ) w = obj.GetColumnCount if obj.GetRowCount&amp;gt;1001 then h=1000 else h=obj.GetRowCount end if Set objExcel = CreateObject("Excel.Application") objExcel.Workbooks.Add objExcel.Worksheets(1).select() objExcel.Visible = True set CellMatrix = obj.GetCells2(0,0,w,h) column = 1 for cc=0 to w-1 objExcel.Cells(1,column).Value = CellMatrix(0)(cc).Text objExcel.Cells(1,column).EntireRow.Font.Bold = True column = column +1 next c = 1 r =2 for RowIter=1 to h-1 for ColIter=0 to w-1 objExcel.Cells(r,c).Value = CellMatrix(RowIter)(ColIter).Text c = c +1 next r = r+1 c = 1 next END FUNCTION&amp;nbsp; SUB CallExample ExcelExport( "CH78" ) END SUB&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but it is giving me error as macro parse failed functionality was lost.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Mar 2015 07:05:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-the-specific-chart-data-into-excel-after-reloading-data/m-p/815077#M287448</guid>
      <dc:creator>deepakqlikview_123</dc:creator>
      <dc:date>2015-03-30T07:05:01Z</dc:date>
    </item>
    <item>
      <title>Re: Export the specific chart data into excel after reloading data</title>
      <link>https://community.qlik.com/t5/QlikView/Export-the-specific-chart-data-into-excel-after-reloading-data/m-p/815078#M287449</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vimlesh,&lt;/P&gt;&lt;P&gt;I want to export specific chart(straight table) to excel after reloading ,This reloading also happen every day morning times so for every day reloading I have created batch file, So automatically application reloading and excel exporting to specific folder I need.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So how to export excel after reloading.this is my question could you please help on this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Advance Thanks,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Munna&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Jul 2015 10:11:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-the-specific-chart-data-into-excel-after-reloading-data/m-p/815078#M287449</guid>
      <dc:creator>Srinivas</dc:creator>
      <dc:date>2015-07-02T10:11:24Z</dc:date>
    </item>
    <item>
      <title>Re: Export the specific chart data into excel after reloading data</title>
      <link>https://community.qlik.com/t5/QlikView/Export-the-specific-chart-data-into-excel-after-reloading-data/m-p/815079#M287450</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;Create a macro to send report.&lt;/P&gt;&lt;P&gt;and trigger the macro afterpost reload.&lt;/P&gt;&lt;P&gt;search code in google.i don't have right now.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Untitled.png" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/91677_Untitled.png" style="height: 418px; width: 620px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Jul 2015 13:58:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-the-specific-chart-data-into-excel-after-reloading-data/m-p/815079#M287450</guid>
      <dc:creator />
      <dc:date>2015-07-02T13:58:52Z</dc:date>
    </item>
  </channel>
</rss>

