Hello Mark,
In example below, I am matching Age, Height, and Blood columns for a data table (dt) to a lookup table (dtLUT).
The Column(out) == Column(out)
is accepted in some machines running this script, but not for others.
May I know if calling the Column function with a variable is only supported in specific JMP versions ?
list = { "Age_Group", "Height_Group", "Blood_Group" };
n = N Items (list);
for (v=1, v<n+1, v++,
out = Regex (list[v], "^(\S+)_Group$", "\1");
// dt and dtLUT already opened earlier
dt << Update (
With (dtLUT),
Match Columns (Column(out) == Column(out))
);
);