workbook.DataMeasure
Object Description |
A data measure object. Use workbook.createDataMeasure(options) to create this object. A data measure object is used as a parameter in the workbook.createMeasureSelector(options) method. |
Supported Script Types |
Server scripts For more information, see SuiteScript 2.x Script Types. |
Module |
|
Methods and Properties |
|
Since |
2021.2 |
Syntax
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. Also see Full scripts in the Tutorial: Creating a Workbook Using the Workbook API topic.
// Add additional code
...
// myDataMeasure is a workbook.DataMeasure object
var myDataMeasure = workbook.createDataMeasure({
aggregation: 'DataCount',
expression: singleExpression, // previously created workbook.Expression
label: 'MeasureLabel'
});
...
// Add additional code