The Current Data Table function expects to receive a table reference
e.g.
dtR = Open ( "Release.jmp" );
dtC = Open( "Control.jmp" );
Current Data Table( dtR );
You can not write:
Current Data Table( Release )
unless 'Release' is a variable that contains a table reference.
If you dont have a table reference then you can create one using the Data Table function
dtR = Data Table("Release");
or you can write
Current Data Table( Data Table( "Release" ) )
where "Release" is the name of the table that you wish to make the current data table
Regards
Dave
-Dave