Issue with Function() default local and Each functions
I have already contacted JMP support about this and this has been marked as a bug. Here is simple "real" case where this bug could be seen
Names Default To Here(1);
dt = Open("$SAMPLE_DATA/Big Class.jmp");
f2 = function({}, {Default Local},
Summarize(dt, uniq_values = by(:sex));
all_sex_values = dt[0, "sex"];
//dt = dt; // don't remove, it just works
For Each({uniq_value}, uniq_values,
...