在Google表格中查询时间戳以查找特定日期但忽略时间

时间:2019-04-23 04:24:57

标签: date datetime google-sheets google-query-language

第一列中有一个带有时间戳的数据范围。我希望特定日期的特定列(AF)的平均值,与时间戳记的时间无关。

我正在使用的公式看起来像这样,但是尽管我看到数据存在,但它返回的结果集为空。

=query(ImportedData1!A1:AF, "Select avg(AF) where A = date '2019-04-08' label avg(AF) '' ", 0)

请问我在做什么错?

2 个答案:

答案 0 :(得分:1)

看看这是否有帮助

getA() = A
sayHello("Max") = hello Max

答案 1 :(得分:0)

tableView

0

=AVERAGE(FILTER(ImportedData1!AF:AF, 
 INDEX(SPLIT(ImportedData1!A:A, " "), ,1) = DATE(2019, 4, 8)))

0