Hello,
I'm a JMP 18 user.
I want to see if a column contains a specific value and update a different column at the same row where the value was found. The below script does not work. Please assist.
dt = Data Table("Logbook");
StatusList = :Status << Get Values;
For( i = 1, i <= N Items(StatusList), i++,
If( Contains( StatusList, "Not" ),
:Name( "Status Error" )[i] = "Error",
, //else
);
);