How to name the picture with variables
Dear JMP admin and users,
I would like to name the picture based on variables and I tried to follow some tips in this forum. However, the output files' name is undesried.
TCB = {"TCB218" ; "TCB219" ; "TCB220"};
For( i = 1, i <= N Items( TCB ), i++,
k = 1;
dt << Select Where( :entitygroup3 == TCB[i] );
TCB[i] = dt << Subset(
Output Table( TCB[i] ),
Selected Rows( 1 ),
Selected column
...