cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Learn how to build custom Python data connectors and further customize JMP’s Data Connector Framework with the Python Data Connector Demo, available now in the JMP Marketplace!
  • See how to create experiments to support product design and ID useful product features. Register for June 12 webinar, 2pm US Eastern Time.

Discussions

Solve problems, and share tips and tricks with other JMP users.
Choose Language Hide Translation Bar
alex
Level I

subsequent row selects impact previously created tables.

Hi again.

I'm trying to create a dashboard by creating some tables and distributions within one window. Something like the below.
What I find is that the tables are created with the row initial selection...
but then when the the next row selection is made, the tables are updated.
(with the wait, I can see the table..and then after 15 secs I see it change)

An suggestions?

Thanks,
Alex


New Window ( MyDashBoard,
---a couple of tables showing the last 6 months
dt << clear row states;
dt << select where(MonthFinish2 <= 201010) << exclude << clear select;
Tablulate ( blah blah);
Tablulate ( blah blah);
---Add a wait for debugging
wait(15);
---a bunch of distributions for the current month
dt << clear row states;
dt << select where(MonthFinish2 != 201104) << exclude << clear select;
Distribution( blah blah)
); ----close new window
1 REPLY 1
alex
Level I

Re: subsequent row selects impact previously created tables.

Answering my own question:

i needed to add:
automatic recalc(0),

for each Tabulate procedure.

which sets:
Tabulate->Script->Automatic Recalc

from page 190 of the JMP Scripting Guide.

Recommended Articles