Hello community, i'm new to this JMP. Asking for help for those who know on how to change all value in 1 columns?
I already make the script to rename the columns but how to change also on value depend on text box?
:WAFER_ID << Set Name( "PROBE" );
User_Input = New Window( "JMP AUTOMATION", << modal(),
hlistbox(
Text Box( "Enter Probe ID:" ),
ID_Probe = Text Edit Box( "", <<set width( 200 ) ),
),
Button Box( "OK",
ID_Probe = ID_Probe << get text();
),
);