我有一个与Google Sheet API一起构建的API,它与我的google工作表交互并返回所有数据。是否有可能在Google工作表中应用过滤器并仅获取过滤器可用的数据(就像我们手动在Google工作表中过滤一样)?
答案 0 :(得分:0)
您可以查看以下内容:
DataFilter,描述应从请求中选择或返回的数据。
{
// Union field filter can be only one of the following:
"developerMetadataLookup": {
object(DeveloperMetadataLookup)
},
"a1Range": string,
"gridRange": {
object(GridRange)
},
// End of list of possible types for union field filter.
}
FilterCriteria用于在过滤器或过滤器视图中显示/隐藏行。
{
"hiddenValues": [
string
],
"condition": {
object(BooleanCondition)
},
}
PivotFilterCriteria用于显示/隐藏数据透视表中的行。
{
"visibleValues": [
string
],
}
希望这有帮助!