EnableRow

Syntax graph.EnableRow(true|false, RowNumber, [,RowNumber]*)

Description This enables or disables a row of data. By default, all rows of data are enabled, so you will probably only use this command to filter data rows.

This command is especially useful when importing HTML Tables or data files that you have no control over, as these data sources may have extraneous rows of information.

This command will filter the specified column(s) of data if the first parameter is set to false. Otherwise, it will unfilter it.

This command can filter any number of rows. Each row should be separated by a comma. It can also filter ranges of rows, as illustrated in Example 5.19 below. A range of rows is denoted by a hyphen between the low and high value in the range.

Example 5.19 Filtering Rows of Data

Graph.EnableColumn(false, 1, 3, 8-10)