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();
),
);
Here is one way to do it
Names Default To Here( 1 );
:WAFER_ID << Set Name( "PROBE" );
User_Input = New Window( "JMP AUTOMATION",
<<modal(),
H List Box( Text Box( "Enter Probe ID:" ), ID_Probe = Text Edit Box( "", <<set width( 200 ) ), ),
Button Box( "OK",
ID_ProbeVal = ID_Probe << get text();
If( ID_ProbeVal != "",
Current Data Table():Probe << set each value( ID_ProbeVal )
);
),
);
Here is one way to do it
Names Default To Here( 1 );
:WAFER_ID << Set Name( "PROBE" );
User_Input = New Window( "JMP AUTOMATION",
<<modal(),
H List Box( Text Box( "Enter Probe ID:" ), ID_Probe = Text Edit Box( "", <<set width( 200 ) ), ),
Button Box( "OK",
ID_ProbeVal = ID_Probe << get text();
If( ID_ProbeVal != "",
Current Data Table():Probe << set each value( ID_ProbeVal )
);
),
);
OMG, thanks so much sir. It works :)