- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
How does JSL's sorting operation not create a new window?
The result of sorting will not create a new window.But the same sort operation using the following JSL will produce a new window to display the sorted results.How do you make a JSL sorting operation not generate a new window?thank you!
dt = Current Data Table();
dt<<Sort(By(4),Order(descending));
2 ACCEPTED SOLUTIONS
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: How does JSL's sorting operation not create a new window?
Here is the example from the Scripting Index
Help==>Scripting Index
that illustrates the Replace Table option for the Sort Platform
Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
dt << Sort(
replace table,
By( :name ),
Order( Ascending )
);
Jim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: How does JSL's sorting operation not create a new window?
It's in the scripting index. Look for sort and you'll see all of the options.
dt = Open( "$sample_data\Big Class.jmp" );
dt << Sort( By( 4 ), Order( descending ), replacetable( 1 ) );
3 REPLIES 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: How does JSL's sorting operation not create a new window?
Here is the example from the Scripting Index
Help==>Scripting Index
that illustrates the Replace Table option for the Sort Platform
Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
dt << Sort(
replace table,
By( :name ),
Order( Ascending )
);
Jim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: How does JSL's sorting operation not create a new window?
It's in the scripting index. Look for sort and you'll see all of the options.
dt = Open( "$sample_data\Big Class.jmp" );
dt << Sort( By( 4 ), Order( descending ), replacetable( 1 ) );
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: How does JSL's sorting operation not create a new window?
replacetable
thanks you!
thanks you!