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.
Get the free JMP Student Edition for qualified students and instructors at degree granting institutions.
Choose Language Hide Translation Bar
View Original Published Thread

Close Invisible Tabulate Window

scott1588
Level IV

I am using Tabulate to summarize some data in a script and then saving the result to a table. I use the "invisible" property (command or whatever it is) so I don't see the intermediate Tabulate window.

 

However, I end up with a bunch of invisible Tabulate windows that accumulate as I run through the script. See image below...

 

scott1588_0-1721974972551.png

 

 

I tried dtab << Close but it doesn't work.

 

Can someone tell me how to close an invisible Tabulate window?

 

Thanks much as always for help as I am gradually learning the ins and outs of JSL.

1 ACCEPTED SOLUTION

Accepted Solutions
jthi
Super User


Re: Close Invisible Tabulate Window

Try

dtab << Close Window;

Example

Names Default To Here(1);
dt = Open("$SAMPLE_DATA/Car Poll.jmp");
obj = dt << Tabulate(
	Add Table(
		Column Table(Grouping Columns(:sex, :marital status)),
		Row Table(Grouping Columns(:country, :size))
	)
);

wait(1);
obj << close window;
-Jarmo

View solution in original post

2 REPLIES 2
jthi
Super User


Re: Close Invisible Tabulate Window

Try

dtab << Close Window;

Example

Names Default To Here(1);
dt = Open("$SAMPLE_DATA/Car Poll.jmp");
obj = dt << Tabulate(
	Add Table(
		Column Table(Grouping Columns(:sex, :marital status)),
		Row Table(Grouping Columns(:country, :size))
	)
);

wait(1);
obj << close window;
-Jarmo
scott1588
Level IV


Re: Close Invisible Tabulate Window

Aaargh. I don't know how I missed that one.

 

Thanks again, Jarmo