- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
What is the table reference?
If I open a table from the File>New Data Table, what is it's reference?
If I create a table variable I need to know the table reference for the namespace, but I did not explicitly define it as I would have in an an Open() command.
How do I determine it?
1 REPLY 1
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: What is the table reference?
Hi Hegedus,
Tables can be referenced by their name. For example, if you open the Iris.jmp sample data file, you could reference it as: Data Table( "Iris.jmp" )
Current Data Table() will reference the last opened or used data table. Often it is useful to assign this to its own variable right away: dt = Current Data Table() especially if you will be switching between or opening multiple tables.
I hope this helps!