Go to
Summary: Runs the navigation to a specific row and retrieves selected columns from a data table.
Code:
dt = Open("data_table.jmp");
i = 2;
dt << Go to( i );
selCol = dt << get Selected columns;
Code Explanation:
- Open data table.
- Assign row index 2 to i.
- Navigate to row 2.
- Get selected columns.