标签: 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)
请问我在做什么错?
答案 0 :(得分:1)
看看这是否有帮助
getA() = A sayHello("Max") = hello Max
答案 1 :(得分:0)
tableView
=AVERAGE(FILTER(ImportedData1!AF:AF, INDEX(SPLIT(ImportedData1!A:A, " "), ,1) = DATE(2019, 4, 8)))