Step by Step Row "list" building: Get All Rows, then Get Rows Where X, then Get Rows Where Y (and X)
I'm trying to understand working with objects that are containers of rows. Even that description may be incorrect.
What is "FilteredRows" in this context?
dt = Current Data Table();
FilteredRows = dt << get rows where( :Date == 12May2025 );
Show( N Rows( FilteredRows ) );
To back up slightly, is there a JSL command to set an object to ALL rows in a datatable? Or is that never necessary?
The clos...