Do it interactively in JMP and JMP will create a script for you. For example I have a table
And I wish to change 100 to 1
JMP creates a script for you
And you can clean it up and modify it a bit and have it look like this
dt << Recode Column(
dt:Prob,
{Map Value(_rcOrig, {100, 1}, Unmatched(_rcNow))},
Target Column(:Prob)
);
JMP basically created this script for me without me writing any JSL.
-Jarmo