日期范围内的Google表格查询总计分钟数

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

我正在尝试通过单独的标签查询Google表格。我想要在特定日期范围内使用特定用户ID的总分钟数。我希望由用户以及用户ID输入日期。

我的查询当前是:

select SUM(Col28) where Col1 is not null and Col1 <> 'Timestamp' and Col1 >= '"&$A4&"' AND Col1 <= '"&$B4&"' and Col3 = 'ROS756'

我在包含查询的单元格中得到的只是单词sum。我没有收到错误,感觉我已经很近了!

date google-sheets sum google-sheets-formula google-sheets-query
1个回答
0
投票

尝试:

"select sum(Col28) 
 where Col1 >= date '"&TEXT(A4; "yyyy-mm-dd")&"' 
   and Col1 <= date '"&TEXT(B4; "yyyy-mm-dd")&"' 
   and Col3 = 'ROS756'"
© www.soinside.com 2019 - 2024. All rights reserved.