- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Workflow Recorder not recording PPT exports of Graph Builder
My JMP Pro 17 is not recording my PPT exports from Graph Builder.
It is only specific to PPT as I exported JPG,PNG PDF all are working fine.
Looking for help as of how to fix this. I will need to create a JSL script to export PPT of graphs daily for monitoring.
1 REPLY 1
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Workflow Recorder not recording PPT exports of Graph Builder
Could be an oversight that it isn't being captured (or maybe there is some other reason...) but you could add custom step to your workflow.
Names Default To Here(1);
Open("$SAMPLE_DATA/Big Class.jmp");
biv = bivariate(y(:weight), x(:height));
rbiv = biv << report;
rbiv << Save Presentation("$TEMP/jmp_example.pptx");
So if I use simple example based on PDF (image) saving step
and modify it a bit
Local({obj},
obj = (Data Table("Big Class") << Graph Builder(
Variables(X(:weight), Y(:height)),
Elements(Points(X, Y, Legend(3)), Smoother(X, Y, Legend(4)))
)) << Report;
obj << Save Presentation("$DOCUMENTS/jmp_example.pptx");
obj << Close Window;
)
-Jarmo