- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
how to do a 'smart' wait in JSL ?
I'm using JSL to add some formula to a large table (10's millions of rows).
The next line of code is using to data of the formula, but if it's executed without wait - the data it sees is empty.
Adding a wait of few seconds solves it but I want to have a robust way to wait just the required amount of time (which depends on the size
of the table which can vary).
Is there a way to know when the command actually finished populating the table?
Using JMP 15
2 REPLIES 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: how to do a 'smart' wait in JSL ?
You can try either of these
Wait( 0 );
//or
dt << rerun formulas;
Jim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: how to do a 'smart' wait in JSL ?
Created:
Aug 27, 2022 05:19 PM
| Last Modified: Aug 30, 2022 4:09 AM
(1295 views)
| Posted in reply to message from txnelson 08-27-2022
dt<<RunFormulas;
is the best. It was invented for this.
Craige