Exclude selected rows
OK, I know this is simple, but I can't work out how to do it.
What is the JSL script for excluding rows that are selected?
Currently, I am excluding rows by creating an additional column called IgnoreRow, with a value of 1 for rows to be excluded and 0 for all other rows (this calculation is based on the contents of other columns). I then use:
For Each Row( Excluded( Row State() ) = :IgnoreRow );
whic...