Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
Is is possible to Export QV Dashboard into Powerpoint with interactivity as a qvw file?
Sorry for interupting, where can I download QV plugin for IE? I can't find it..
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
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?
hi sunil,
i checked the link, it's showing exporting objects as image.
but we want it to be dynamic in powerpoint also.
I will remain static in powerpoint.
But i want it to be dynamic in ppt. even if we send that ppt to others, it should remain dynamic
is it possible?
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