Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Talend Cloud AWS EU Scheduled Outage: Starting Tues 26 May 21:00 CEST with expected completion Wed 27 May 01:00 CEST
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Export to PowerPoint with Qlikview Functionality??

Hi All,

Is is possible to Export QV Dashboard into Powerpoint with interactivity as a qvw file?

Labels (1)
18 Replies
Not applicable
Author

Sorry for interupting, where can I download QV plugin for IE? I can't find it..

Not applicable
Author

Not applicable
Author

Hi, I need to do something similar. I have already installed the ocx and plug in features but once i copy the objects from qv into the ppt I have problems in knowing how they update when qv information do. Would that be possible?

I need to set up a ppt model and have the numbers updated each month.

Thanks in advance

udaya_kumar
Specialist
Specialist

Hi sebastien,

when i open the link mentioned, it gives page not found.

even i want the same thing for my project. i want to export with full functionality.

can you send me that ppt?

suniljain
Master
Master

udaya_kumar
Specialist
Specialist

hi sunil,

i checked the link, it's showing exporting objects as image.

but we want it to be dynamic in powerpoint also.

suniljain
Master
Master

I will remain static in powerpoint.

udaya_kumar
Specialist
Specialist

But i want it to be dynamic in ppt. even if we send that ppt to others, it should remain dynamic

is it possible?

Not applicable
Author

To access on a specific item, you have to search it in QlikView with

    QlikViewItem item = qlikItems.SingleOrDefault(c => c.SheetName == qvSheetName

                                    && c.ItemName == qvShapeName);

Once done, you can copy it:

    item.SheetObject.CopyTableToClipboard(true);

Now that you copied it, you can paste it in Excel/PowerPoint, or make any HTML/XML around it.

    sheet.Range(cellmapp).PasteSpecial(); // for Excel in cellmapp is a position to paste

    ppApp.ActiveWindow.View.PasteSpecial(); // for PowerPoint, pasted a current slide

Your task now is to load the .qvw and extract objects with \\Document\<Tab name>

Load all SheetObjects.

And in your PowerPoint, you might work with Alternative.Text for checking the correct picture to replace.

Message was edited by: mike27015