Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
7 Replies
m_woolf
Master II
Master II

QlikView macros are vbscript, not VBA.  The syntax is slightly different.

For instance, for the add new slide code:

     ActivePresentation.Slides.Add Index:=ActivePresentation.Slides.Count + 1, Layout:=ppLayoutCustom

would become something like:

     ActivePresentation.Slides.Add(ActivePresentation.Slides.Count + 1, 32)

marcus_sommer

Take a look on this: Automated PowerPoint Presentation Extraction

- Marcus

Not applicable
Author

hi MW,

I didint get your point .Where i need to change the code.Please elaborate

Not applicable
Author

Hi Marcus,

I need shift the data of table into other slide whenever the data exceeds the bottom of the slide

beck_bakytbek
Master
Master

Hi Pallavi,

can you share your screenshot, so that we finde very quickly the solution?

beck

marcus_sommer

With the above mentioned link you get a working example (and if you searched here in the community you will find some more). At first you adapt it for your sheets and objects and after you see how it practically worked you could extend it to your further needs (where you have already found a good starting point respectively a solution - see your first link) and where it shouldn't be too difficult to adapt the vba-syntax to the vbs-syntax.

Whereby I suggest to consider if not another output-format is more suitable for large (multi-page) tables - which I would store/export to excel/csv or print as PDF instead of plotting them into many PP slices.

- Marcus

Not applicable
Author

Hi Marcus ,

Thanks for your suggestion but this format is fixed by business team we can't change the format.