访问和修改现有的数据源数据透视表。如需创建新的数据源数据透视表,请使用 Range.createDataSourcePivotTable(dataSource)
。
仅将此类用于与数据库关联的数据。
方法
方法 | 返回类型 | 简介 |
---|---|---|
add | Pivot | 根据指定的数据源列添加新的透视列组。 |
add | Pivot | 根据指定的数据源列和指定的过滤条件添加新过滤器。 |
add | Pivot | 基于指定的数据源列添加新的透视值,而无需任何汇总函数。 |
add | Pivot | 根据指定的数据源列和指定的汇总函数添加新的透视值。 |
add | Pivot | 根据指定的数据源列添加新的数据透视行组。 |
as | Pivot | 将数据源数据透视表作为常规数据透视表对象返回。 |
cancel | Data | 取消与此对象关联的数据刷新(如果当前正在运行)。 |
force | Data | 刷新此对象的数据,无论当前状态如何。 |
get | Data | 获取对象关联的数据源。 |
get | Data | 获取对象的数据执行状态。 |
refresh | Data | 刷新对象的数据。 |
wait | Data | 等待当前执行操作完成,并在提供的秒数后超时。 |
详细文档
add Column Group(columnName)
根据指定的数据源列添加新的透视列组。
参数
名称 | 类型 | 说明 |
---|---|---|
column | String | 数据源列名称(用于构建数据透视群组)。 |
返回
Pivot
- 新的数据透视组。
授权
使用此方法的脚本需要获得以下一个或多个范围的授权:
-
https://www.googleapis.com/auth/spreadsheets.currentonly
-
https://www.googleapis.com/auth/spreadsheets
add Filter(columnName, filterCriteria)
根据指定的数据源列和指定的过滤条件添加新过滤器。
参数
名称 | 类型 | 说明 |
---|---|---|
column | String | 过滤器所依据的数据源列名称。 |
filter | Filter | 过滤条件使用的条件。 |
返回
Pivot
- 新过滤条件。
授权
使用此方法的脚本需要获得以下一个或多个范围的授权:
-
https://www.googleapis.com/auth/spreadsheets.currentonly
-
https://www.googleapis.com/auth/spreadsheets
add Pivot Value(columnName)
基于指定的数据源列添加新的透视值,而无需任何汇总函数。仅适用于 Looker 指标。
以下代码展示了如何将 Looker 指标添加为数据透视值。
// TODO(developer): Replace with your spreadsheet ID which has a Looker data // source. const spreadsheet = SpreadsheetApp.openById('abcd1234'); const datasource = spreadsheet.getDataSources()[0]; const pivotTable = datasource.createDataSourcePivotTableOnNewSheet(); pivotTable.addPivotValue('columnName');
此方法仅适用于 Looker 数据源。
参数
名称 | 类型 | 说明 |
---|---|---|
column | String | 数据透视值所依据的数据源列名称。 |
返回
Pivot
- 新的枢轴值。
授权
使用此方法的脚本需要获得以下一个或多个范围的授权:
-
https://www.googleapis.com/auth/spreadsheets.currentonly
-
https://www.googleapis.com/auth/spreadsheets
add Pivot Value(columnName, summarizeFunction)
根据指定的数据源列和指定的汇总函数添加新的透视值。
如需为 Looker 测量添加数据透视值,请使用 add
。
参数
名称 | 类型 | 说明 |
---|---|---|
column | String | 数据透视值所依据的数据源列名称。 |
summarize | Pivot | 数据透视值使用的汇总函数。 |
返回
Pivot
- 新的枢轴值。
授权
使用此方法的脚本需要获得以下一个或多个范围的授权:
-
https://www.googleapis.com/auth/spreadsheets.currentonly
-
https://www.googleapis.com/auth/spreadsheets
add Row Group(columnName)
根据指定的数据源列添加新的数据透视行组。
参数
名称 | 类型 | 说明 |
---|---|---|
column | String | 数据源列名称(用于构建数据透视群组)。 |
返回
Pivot
- 新的数据透视组。
授权
使用此方法的脚本需要获得以下一个或多个范围的授权:
-
https://www.googleapis.com/auth/spreadsheets.currentonly
-
https://www.googleapis.com/auth/spreadsheets
as Pivot Table()
将数据源数据透视表作为常规数据透视表对象返回。
返回
Pivot
- 数据透视表。
授权
使用此方法的脚本需要获得以下一个或多个范围的授权:
-
https://www.googleapis.com/auth/spreadsheets.currentonly
-
https://www.googleapis.com/auth/spreadsheets
cancel Data Refresh()
取消与此对象关联的数据刷新(如果当前正在运行)。
以下示例展示了如何取消公式刷新。
const spreadsheet = SpreadsheetApp.getActive(); const formula = spreadsheet.getDataSourceFormulas()[0]; // Cancel the ongoing refresh on the formula. formula.cancelDataRefresh();
如果数据源类型未启用,则会抛出异常。使用 Spreadsheet
方法为特定数据源类型启用数据执行。
返回
Data
- 数据对象。
授权
使用此方法的脚本需要获得以下一个或多个范围的授权:
-
https://www.googleapis.com/auth/spreadsheets.currentonly
-
https://www.googleapis.com/auth/spreadsheets
force Refresh Data()
无论当前状态如何,都会刷新此对象的数据。如需了解详情,请参阅 refresh
。如果您想取消当前正在运行的此对象刷新,请参阅 cancel
。
如果数据源类型未启用,则会抛出异常。使用 Spreadsheet
方法为特定数据源类型启用数据执行。
返回
Data
- 数据对象。
授权
使用此方法的脚本需要获得以下一个或多个范围的授权:
-
https://www.googleapis.com/auth/spreadsheets.currentonly
-
https://www.googleapis.com/auth/spreadsheets
get Data Source()
获取对象关联的数据源。
返回
Data
- 数据源。
授权
使用此方法的脚本需要获得以下一个或多个范围的授权:
-
https://www.googleapis.com/auth/spreadsheets.currentonly
-
https://www.googleapis.com/auth/spreadsheets
get Status()
获取对象的数据执行状态。
返回
Data
- 数据执行状态。
授权
使用此方法的脚本需要获得以下一个或多个范围的授权:
-
https://www.googleapis.com/auth/spreadsheets.currentonly
-
https://www.googleapis.com/auth/spreadsheets
refresh Data()
刷新对象的数据。
如果当前处于 error
状态,则会抛出异常。使用 Data
更新规范。建议使用此方法,而不是 force
,以防止对数据源进行意外修改。
如果数据源类型未启用,则会抛出异常。使用 Spreadsheet
方法为特定数据源类型启用数据执行。
返回
Data
- 数据对象。
授权
使用此方法的脚本需要获得以下一个或多个范围的授权:
-
https://www.googleapis.com/auth/spreadsheets.currentonly
-
https://www.googleapis.com/auth/spreadsheets
wait For Completion(timeoutInSeconds)
等待当前执行操作完成,并在提供的秒数后超时。 如果超时时执行未完成,则会抛出异常,但不会取消数据执行。
参数
名称 | 类型 | 说明 |
---|---|---|
timeout | Integer | 等待数据执行的时间(以秒为单位)。最长为 300 秒。 |
返回
Data
- 数据执行状态。
授权
使用此方法的脚本需要获得以下一个或多个范围的授权:
-
https://www.googleapis.com/auth/spreadsheets.currentonly
-
https://www.googleapis.com/auth/spreadsheets