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.
Choose Language Hide Translation Bar
r23426
Level II

How to bring a table to 1st level ?

Hi,

I have a script that creates lots of table.

 

in some specific case, I am defining a table as current to work on it, 

dt = data table("name of my table");

but I would like also to visualize it as a sanity check, in the script.

 

I have not been able to find any hint in the help pdf file with Bring, 1st level,  etc...

 

I try something like

 

 

obj = current data table (dt);

obj <<  show table(1);

 

 

but no success.

 

I probably do not use the right keyword, but I am still stuck with this.

 

Any help would be greatly appreciated

Best 

J2S

 

 

1 ACCEPTED SOLUTION

Accepted Solutions
Craige_Hales
Super User

Re: How to bring a table to 1st level ?

dt << bringWindowToFront;
Craige

View solution in original post

2 REPLIES 2
Craige_Hales
Super User

Re: How to bring a table to 1st level ?

dt << bringWindowToFront;
Craige
r23426
Level II

Re: How to bring a table to 1st level ?

Thank you for the help