Skip to main content
Announcements
See why Qlik is a Leader in the 2024 Gartner® Magic Quadrant™ for Analytics & BI Platforms. Download Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Table Name while exporting table to excel via access point

Hi Guys,

Question

Is it possible to give a file name while exporting table to excel via access point?

What am I trying Achieve?

I have 4 different tables on the dashboard. I want to be able to export that table to excel and it should have the table name/title and current date as the file name..

Right now, when I export it to excel then it asks me to save the file but it shows name as below

Table Name.jpg

Thank you.

7 Replies
alexdataiq
Partner - Creator III
Partner - Creator III

I don't believe it's possible to do so, but maybe you could do it with a macro, asuming you use the IE plug-in.

Not applicable
Author

Thanks for the reply Alejandro,

I tried macro and it works fine on the local machine but not working via access point.

Tried enabling Macro settings on the server security but still no success.

avinashelite

as per my knowledge if your using the ajax client it will not support macro ..check that once

alexdataiq
Partner - Creator III
Partner - Creator III

Yes, most (if not all) macros won't work with the Ajax ZFC, only when you use the plug-in in Internet Explorer.

Cheers

awhitfield
Partner - Champion
Partner - Champion

Hi Lokesh,

can't you just edit the file name in save as?

Andy

Not applicable
Author

Yes Of course i can

I was just checking if there it can do this or not

Pulkit_Thukral
Partner - Creator II
Partner - Creator II

Maybe a macro can help you in this case .Use Macro in your application with below written script.

sub Server_Export2

SET XLApp = CreateObject("Excel.Application")

       XLApp.Visible = False

SET XLDoc = XLApp.Workbooks.Add

SET XLSheet1 = XLDoc.Worksheets(1)

       ActiveDocument.GetSheetObject("CH56").CopyTableToClipboard true

       XLSheet1.Paste XLSheet1.Range("A1")

       XLSheet1.Name = "Reports2"    

XLApp.Visible = True

end sub