谷歌文档日期函数

发布于 2024-12-23 16:19:20 字数 335 浏览 1 评论 0原文

A 列中的日期为 mm/dd/yyyy。我现在需要将 A 列中的日期转换为 DATE 函数的 yyyy;mm;dd 。下面是我必须获得我想要的数据。目前它是硬编码的。我需要从 A2(2011 年 12 月 30 日)中吸收 2011;12;30。然后我需要为第二个日期再添加一天(2011;12;31)。有什么想法吗?

=COUNT(FILTER( 'Sheet 1'!O:O ; 'Sheet 1'!O:O >=DATE( 2011;12;30) ; 'Sheet 1'!O:O <=DATE( 2011;12;31) ; SEARCH( "b" ; 'Sheet 1'!I:I ) ) )

I have dates in column A that are mm/dd/yyyy. I need to now convert the date from column A into yyyy;mm;dd for the DATE function. Below is what I have to get the data I want. Currently it is hard coded. I need the 2011;12;30 to be sucked in from A2 which is 12/30/2011. Then I need to add one more day to it for the second date (2011;12;31). Any ideas?

=COUNT(FILTER( 'Sheet 1'!O:O ; 'Sheet 1'!O:O >=DATE( 2011;12;30) ; 'Sheet 1'!O:O <=DATE( 2011;12;31) ; SEARCH( "b" ; 'Sheet 1'!I:I ) ) )

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

千纸鹤带着心事 2024-12-30 16:19:20

电子表格中不清楚什么是日期格式,什么是字符串格式。

转换格式的最简单方法是使用 YEAR、MONTH、DAY 和其他日期函数

例如,要将默认(美国区域设置)格式 mm/dd/yyyy 转换为 yyyy;mm;dd,您可以使用函数:

=Concatenate(YEAR(A2),";",MONTH(A2),";",DAY(A2))

并将此函数复制到填充列 A。

It is not clear what is in Date format, and what is in String format in your spreadsheet.

The simplest way to convert formats is to use YEAR, MONTH, DAY and other date functions.

For example to convert from the default (in US locale) format of mm/dd/yyyy to yyyy;mm;dd you can use the function:

=Concatenate(YEAR(A2),";",MONTH(A2),";",DAY(A2))

and copy this function to the fill down column A.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文