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

JMP Script : save a PDF based on the user selection

Hello, 

I would like to save a PDF based on the user selection.

Do you know if it is possible to make it?

Example: the product selected by the user is XX, is it possible to have the product name in the PDF saved?

 

product = "XX";
w = Current Journal(R5);
w << Set page setup( margins(0.1, 0.75, 0.1, 0.1 ), scale( 0.8 ), portrait( 0 ), paper size( "Letter" ) ); w << save pdf( "P:\data\Suivi de tendance "produit"n.pdf" );

When I try this program, it doesn't work.

 

Is anyone have a suggestion to help me?

Thank you

Sebastien

1 REPLY 1

Re: JMP Script : save a PDF based on the user selection

The following script worked for me. I changed the name of the variable to 'produit' in line 1 and added the || operators in line 9 (well, line 10, as I don't have a drive mapped as p:)

produit = "XX";
w = Current Journal( R5 );
w << Set page setup(
	margins( 0.1, 0.75, 0.1, 0.1 ),
	scale( 0.8 ),
	portrait( 0 ),
	paper size( "Letter" )
);
w << save pdf( "P:\data\Suivi de tendance " || produit || "n.pdf" );
//w << save pdf( "$DESKTOP/Suivi de tendance " || produit || "n.pdf");