0

我正在从表单数据收集表中导入数据,我想将时间戳更改为日期,以便我更容易过滤。

我想要做的是能够根据我提供的日期过滤数据,例如,我想过滤 2013 年 4 月 20 日和 2013 年 5 月 1 日之间的数据。目前我的时间戳是日期时间格式,因此很难这样做。

有没有办法Query(A:D,"select date(A), B, C",1)让我的表只有日期而不是日期时间或

如果我设置 A1 = 2013 年 4 月 20 日,B1 = 2013 年 5 月 1 日,C1 =Query(Sheet1!A:D,"select A, B, C, D where A >= date'"""&A1&"""' and A <= date'"""&B1&"""'",1)

请帮助我达到这一点

谢谢

霍哈尔

4

1 回答 1

5

看看todate() 这里

=Query(Sheet1!A:D,"select A, B, C, D where todate(A) >= date'" &A1& "' and todate(A) <= date'" &B1& "'",1)
于 2013-05-09T17:04:37.873 回答