cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
The Discovery Summit 2025 Call for Content is open! Submit an abstract today to present at our premier analytics conference.
See how to use to use Text Explorer to glean valuable information from text data at April 25 webinar.
Choose Language Hide Translation Bar
View Original Published Thread

Data Table from Private to Visible

laisteve17
Level II

How do I show (in a window) a data table that was opened as Private?

 

I understand that private objects do not have windows associated with them. I generate many tables and I am optimizing my script by keeping them private. My question is, how do I add a private data table to a window and display it like a typical data table? I want the same functionality as if it were opened as Visible.

 

Thank you in advance!

1 ACCEPTED SOLUTION

Accepted Solutions
Eric_Hill
Staff


Re: Data Table from Private to Visible

Hey,

Specifically to Jim's point, do this:

dtPrivate = Open("$SAMPLE_DATA\Big Class.jmp", Private);

/*...*/

dtVisible = dt << Subset( Link To Original Data Table(1) );

Any changes you make to the visible version of the table will be reflected in the private table, since the visible table is merely a link to the private table.

HTH,

Eric

View solution in original post

3 REPLIES 3
txnelson
Super User


Re: Data Table from Private to Visible

You will have to create a subset of the data table to either an invisible or visible state.

Jim
Eric_Hill
Staff


Re: Data Table from Private to Visible

Hey,

Specifically to Jim's point, do this:

dtPrivate = Open("$SAMPLE_DATA\Big Class.jmp", Private);

/*...*/

dtVisible = dt << Subset( Link To Original Data Table(1) );

Any changes you make to the visible version of the table will be reflected in the private table, since the visible table is merely a link to the private table.

HTH,

Eric


Re: Data Table from Private to Visible

This can be done without creating a subset using the New Data View message. I used this method in my Word Import Tool add-in.

dt = Open( "$SAMPLE_DATA\Big Class.jmp", "private" );

dt << New Data View;
Justin