从Google AppMaker数据源创建数据透视表

时间:2018-03-08 03:29:16

标签: pivot-table spreadsheet google-app-maker

我已将appmaker(2)中的数据导出到电子表格中。问题是,我必须在导出的工作表中手动执行数据透视表,以获取表格,如no(3)。图(1)显示了我在数据源中的字段。

(1) Screenshot of what I have in my datasource

(2) Data exported from AppMaker into Spreadsheet

(3) Expected pivot table to be exported

任何人都可以教我如何从现有数据源查询数据以直接生成另一个表,例如在AppMaker中的no(3)中,这样我只需将数据直接导出到工作表,而无需在数据后手动进行数据透视已被出口..或者有没有比其他任何人知道如何做的更好?

1 个答案:

答案 0 :(得分:0)

我宁愿选择一些不错的charts来布局这些统计信息......但是如果你想要使用Sheets方式,则需要使用Apps Script Sheets Advanced API编写脚本。

// server side code
function addPivotTable_(spreadsheetId, pivotSourceDataSheetId, destinationSheetId) {
  var requests = [{
    // Request object goes here
  }];

  var response = Sheets.Spreadsheets.batchUpdate({'requests': requests}, spreadsheetId);
}