Query Col1> today()

问题描述 投票:0回答:1

[当我使用下面留下的格式时,返回错误,我知道相对于WHERE AND,缺少某些调整...但是我不适合提供此错误。

我想知道我错过了什么。

"select Col1,Col2,Col3 where Col1 is not null Order by Col1, Col2 AND Col1 > date'"&TEXT(today()-1,"yyyy/mm/dd")&"'"

Col1Col2的日期和时间是这样的:

enter image description here

使用此公式,我希望我只能过滤那些具有当天或明天的日期并且今天的游戏高于当前时间的数据。

链接到电子表格:https://docs.google.com/spreadsheets/d/15T4UPVtEHv43DLomKcTmdaPuGWMsBUoO7bLvlOhab4k/edit?usp=sharing

在Página1G2中设置的公式

google-sheets google-sheets-query
1个回答
0
投票

尝试:

"select Col1, Col2, Col3 where Col1 >='"&TEXT(TODAY()-1,"yyyy-mm-dd")&"' and Col1 is not null Order by Col1, Col2"

这将返回78条记录

© www.soinside.com 2019 - 2024. All rights reserved.