Modules

filter

 

Objects/Functions

module (N/dataset)

SuiteScript 2.0

Column.formula

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

N/dataset Module
Column.formula
Property Description: The formula of the column. For more information on formulas in SuiteAnalytics, see Formula Fields.
Type: string (read-only)
Module: N/dataset Module
Parent Object: dataset.Column
Sibling Object Members: Column Object Members
Since: 2020.2
Search NetSuite - https://system.netsuite.com/app/help/helpcenter.nl?search=Column.formula

Example:

// Code Example 1
// Add additional code
//...
// View Column.formula
var myDataset = dataset.load({
id: myDatasetId
});

log.audit({
title: 'Column.formula = ',
details: myDataset.columns[0].formula
});
//...
// Add additional code

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