有没有办法使用Google表格API只读取第X列中包含空单元格的行?
这是我今天从谷歌表中读取的方式 但我没有看到任何"过滤器"方法
final ValueRange values = service.spreadsheets()
.values()
.get(spreadSheetId, range)
.execute();
答案 0 :(得分:0)
您可以查看https://www.tutorialspoint.com/spring/spring_autowired_annotation.htm,然后使用BLANK
。
单元格的值必须为空。由条件格式和过滤器支持。不需要ConditionType。
这是另一个参考:ConditionValues,您可以使用它来显示/隐藏过滤器或过滤器视图中的行。使用hiddenValues[]
(应隐藏的值。)和condition
(对于要显示的值必须为true的条件。)字段。