Development tools : Global functions : List and Table category : tableFilter
  
tableFilter
Description
Filters the source table according to a condition that you set up, and adds the rows that meet the condition to a target table.
If you want to filter the table with complex conditions, add a column to the table and fill the column with new cell values that are calculated by using expressions for every row. Then, set up filter conditions by using the new column.
Usage
Client side: N
Server side: Y
Syntax
IndexedCollection tableFilter(source, columnName, comparator, comparable)
Arguments
source
The table to be filtered. The type is IndexedCollection.
columnName
The first column to be compared. The type is String.
comparator
The comparison operator. Supported values are <, >, <=, >=, ==, and !=. The type is String.
comparable
The second column or value to be compared. The type is Comparable.
Return
Returns the table with the filtered rows.
Go up to
List and Table category