Table Views

Table views let you explore your dataset query results in a simple tabular format. With table views, you can view your data without needing to customize or set up complex layouts or formulas. You can only create table views using fields that have been added to the underlying dataset.

For more information about table views in SuiteAnalytics Workbook, see Workbook Table Views.

You can create a table view using workbook.createTable(options). This method creates a workbook.Table object. To create a table view, you'll need to provide the columns, underlying dataset, ID, and name. Use workbook.createTableColumn(options) to create table columns. For more information, see Table Columns.

          var myTable = workbook.createTable({
    columns: [myFirstTableColumn, mySecondTableColumn, myThirdTableColumn],
    dataset: myDataset,
    id: 'customscript_myTable',
    name: 'My Table View'
}); 

        

Related Topics

General Notices