Skip to main content
Announcements
Qlik Introduces a New Era of Visualization! READ ALL ABOUT IT
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Export to Excel not working.

Hi ,

we are facing an issue that export to excel is not working on Access point and working fine on qlikview designer(server).

what could be the possible reasons, we have added a links on trusted sites and IE v11 is installed on server.

Thanks

Manish

15 Replies
vikasmahajan

Please try this thread  Ashfauq given solution

Export to excel giving problem while export from Access Point

Vikas

Hope this resolve your issue.
If the issue is solved please mark the answer with Accept as Solution & like it.
If you want to go quickly, go alone. If you want to go far, go together.
Anonymous
Not applicable
Author

image.jpg

Hi

I cant see Web tab on left side.

To enable that do we need to setup any other particular settings.

Thanks

Manish

Anonymous
Not applicable
Author

typo Right* side

ashfaq_haseeb
Champion III
Champion III

Hi,

have a look at attached image.

Regards

ASHFAQ

Anonymous
Not applicable
Author

seems to be same as you have mentioned.

have a look:web tab.jpg

what next?

ashfaq_haseeb
Champion III
Champion III

Hi,

Do you have .csv too can you confirm?

Regards

ASHFAQ

Anonymous
Not applicable
Author

csv.jpg

yes.

ashfaq_haseeb
Champion III
Champion III

What exact error do you get.

Did you try from other browser?

Did you try from some other machine then server?


Can you share snapshots of error you get?


Regards

ASHFAQ

Anonymous
Not applicable
Author

on server only IE v11 is installed i tried on that only there is nothing happening when i click on button.

below is macro script:

sub Export_reported

set XLApp = CreateObject("Excel.Application")

XLApp.Visible = true 'you can make it false, if you want to make it in the background

set XLDoc = XLApp.Workbooks.Add

XLDoc.Sheets(1).name = "Export"

set XLSheet = XLDoc.Worksheets(1)

set MyTable = ActiveDocument.GetSheetObject("CH171") 'Change TB01 to the object you want to export to Excel (Object Properties > General tab > far right)

set XLSheet = XLDoc.Worksheets(1) 'Select sheet where data should be pasted

Mytable.CopyTableToClipboard true 'Copy data to Clipboard

XLSheet.Paste XLSheet.Range("A1") 'Paste data starting at A1

End Sub

same macro is working on same server QV designer mode.

Thanks

Manish Madan