Bring Window To Front not working properly?
[JMP 17.0.0] This may be kind of obscure, but let's say I create a new project that contains two data tables: Table 1 and Table 2. In Table 1, I have a script to duplicate Table 2 in a new Table 3 (if Table 3 doesn't already exist), then bring the focus back to Table 2: dt = Data Table( "Table 2");
If( Try( Data Table("Table 3") << Get Name, "") == "",
dt << Subset(
Output Table( "Table 3" )
...