Modules

filter

 

Objects/Functions

module (N/workbook)

SuiteScript 2.0

Measure.label

// Please search https://system.netsuite.com/app/help/helpcenter.nl?search=Measure.label for more information.

N/workbook Module
Measure.label
Property Description: The label of the measure.
Type: string
Module: N/workbook Module
Parent Object: workbook.Measure
Sibling Object Members: Measure Object Members
Since: 2020.2
Search NetSuite - https://system.netsuite.com/app/help/helpcenter.nl?search=Measure.label

Example:

// Code Example 1
// Add additional code
//...
// View Measure.label in a ChartDefinition
var myWorkbook = workbook.load({
id: myWorkbookId
});
log.debug ({
title: 'Measure.label = ',
details: myWorkbook.chartDefinitions[0].aggregationFilters[0].sortBys[0].measure.label
});
//...
// Add additional code

//SOURCE: https://system.netsuite.com/app/help/helpcenter.nl?fid=section_159060623182.html