谷歌文档日期函数
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
电子表格中不清楚什么是日期格式,什么是字符串格式。
转换格式的最简单方法是使用 YEAR、MONTH、DAY 和其他日期函数。
例如,要将默认(美国区域设置)格式 mm/dd/yyyy 转换为 yyyy;mm;dd,您可以使用函数:
并将此函数复制到填充列 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:
and copy this function to the fill down column A.