ConditionalFilter.row

Note:

The content in this help topic applies to SuiteScript 2.x.

Property Description

Indicates whether the conditional filter applies to a row (in which case, the value is true) or a column (in which case, the value is false).

Type

Boolean

Module

N/workbook Module

Parent Object

workbook.ConditionalFilter

Sibling Object Members

ConditionalFilter Object Members

Since

2020.2

Errors

Error Code

Thrown If

WRONG_PARAMETER_TYPE

The value for this property is not a string.

Syntax

Important:

The following code sample shows the syntax for this member. It is not a functional example. For a complete script example, see N/workbook Module Script Samples.

            // Add additional code
...
var myConditionalFilter = workbook.createConditionalFilter({
    filteredNodesSelector: mySelector,
    measure: myMeasure,
    otherAxisSelector: myOtherSelector,
    predicate: myPredicateExpression,
    row: true
});

var theRow = myConditionalFilter.row;
...
// Add additional code 

          

Related Topics

workbook.ConditionalFilter
N/workbook Module
SuiteScript 2.x Modules
SuiteScript 2.x

General Notices