返回 Google Sheets

将 Knoon AI 与 Google Sheets (Google) 连接以自动化 AI 工作流。

Aggregate values within a specific A1 range in a Google Sheet (e.g. SUM, AVG, MIN, MAX, COUNT, ARRAY_AGG, STRING_AGG).
googleSheetsAggregateCells
测试版
权限
  • https://www.googleapis.com/auth/drive.file
可选权限
  • https://www.googleapis.com/auth/drive
参数
名称类型描述必填
spreadsheetIdfile Select the Google Sheets file that contains the range to aggregate.是的
sheetNamemustache Name of the sheet (tab) to read from (e.g. "Sheet1").是的
rangemustache A1 range to aggregate (e.g. "A2:A100", "B2:D10").是的
aggregationstring Aggregation function to apply to the cells in the range.是的
delimitermustache Delimiter to use for STRING_AGG. Ignored for other aggregation types.没有
topNmustache Number of top values to return for APPROX_TOP_COUNT. Ignored for other aggregation types.没有
numQuantilesmustache Number of quantiles for APPROX_QUANTILES (e.g. 4 = quartiles). Ignored for other aggregation types.没有
回报
名称类型描述
statusstring DONE.
resultany Aggregation result. For SUM/AVG/MIN/MAX/COUNT/COUNT(DISTINCT) returns a number. For STRING_AGG returns a string. For ARRAY_AGG returns an array of values. For APPROX_TOP_COUNT returns an array of { value, count } objects. For APPROX_QUANTILES returns an array of numeric quantile boundaries.