Here is a simple script that does creates the variables for each of the data tables open in the JMP session
Names Default To Here( 1 );
For( i = 1, i <= N Table(), i++,
theName = data table(i) << get name;
Eval(
Substitute(
Expr(
__name__ = Data Table( i )
),
Expr( __name__ ), Parse(theName)
)
)
);
Jim