Modules
Objects/Functions
SuiteScript 2.0
// Please search https://system.netsuite.com/app/help/helpcenter.nl?search=ConditionalFilter.otherAxisSelector for more information.
N/workbook Module
ConditionalFilter.otherAxisSelector
Property Description:
The selector for the other axis in the conditional filter.
Type:
workbook.AllSubNodesSelector | workbook.PathSelector | workbook.DimensionSelector
Module:
N/workbook Module
Parent Object:
workbook.ConditionalFilter
Sibling Object Members:
ConditionalFilter Object Members
Since:
2020.2
Search NetSuite -
https://system.netsuite.com/app/help/helpcenter.nl?search=ConditionalFilter.otherAxisSelector
Example:
// Code Example 1
// Add additional code
//...
// View ConditionalFilter.otherAxisSelector in a ChartDefinition and in a PivotDefinition
var myWorkbook = workbook.load({
id: myWorkbookId
});
log.audit({
title: 'ChartDefinition ConditionalFilter.otherAxisSelector = ',
details: myWorkbook.chartDefinitions[0].aggregationFilters[0].otherAxisSelector
});
log.audit({
title: 'PivotDefinition ConditionalFilter.otherAxisSelector = ',
details: myWorkbook.pivotDefinitions[0].aggregationFilters[0].otherAxisSelector
});
//...
// Add additional code
//SOURCE: https://system.netsuite.com/app/help/helpcenter.nl?fid=section_159060210397.html