cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Choose Language Hide Translation Bar

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
jthi
Super User

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");

jthi_0-1710273043021.png

https://www.jmp.com/support/help/en/17.2/#page/jmp/display-box-messages.shtml?os=win&source=applicat...

 

So if I use simple example based on PDF (image) saving step

jthi_1-1710273080306.png

and modify it a bit

jthi_3-1710273216268.png

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