Excel如何在跨年时将weeknum转换为日期
我有一个包含“日期”列和“周数”列的表。
weeknum 列具有以下公式来创建 srting:2022/10。 =YEAR([@[Date]})&"/"&WEEKNUM([@[Date]],2)
我想转换一周的开始日和结束日来自字符串“2022/10”。
我试过=DATE($M$1,1,-2)-(WEEKDAY(DATE($M$1,1,3))+(MID(M4,6,2)*7))
其中 $M$1
引用当前年份,M4
引用 Year/weeknum,但返回 10/17/2021。它应该在 2022 年 2 月 28 日返回,并且随着周数的增加。返回的日期减少。 2021/53 的日期是正确的,但其他日期都是错误的。
我如何确定日期?
I have a table with Date column and weeknum column.
The weeknum column has below formula to create a srting: 2022/10.=YEAR([@[Date]})&"/"&WEEKNUM([@[Date]],2)
I would like to get the start day and end day of the week converting from the string "2022/10".
I tried =DATE($M$1,1,-2)-(WEEKDAY(DATE($M$1,1,3))+(MID(M4,6,2)*7))
where $M$1
references current year and M4
references Year/ weeknum but it returns 10/17/2021. It should return 2/28/2022, and as the weeknumber increases. the returned dates decrease.
The dates of 2021/53 are correct, but the others got wrong.
How do I get fixed the dates?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过去掉日期的工作日编号并加上 7 工作日来实现此目的。
即,
如果我们使用列表中的第一个日期,并且我们说周从星期一开始:
一周的第一天(星期一) = E2-WEEKDAY(E2,2)+1 = 12/27/ 21
一周的最后一天(星期日) = E2+(7-WEEKDAY(E2,2)) = 01/02/22
注意:我假设了你的第一次约会(12/27/2021) 位于单元格 E2 中
如果您希望星期日成为一周的第一天,只需将 1 而不是 2 添加到公式的 WEEKDAY 部分即可。
You can do this by taking the weekday number of the date away from itself and adding 7-weekday to itself.
i.e.
If we use the first date on your list and we say weeks start on Monday:
The first day of the week (Monday) = E2-WEEKDAY(E2,2)+1 = 12/27/21
The last day of the week (Sunday) = E2+(7-WEEKDAY(E2,2)) = 01/02/22
Note: I have assumed your first date (12/27/2021) is in Cell E2
If you want Sunday to be the first day of the week, simply add a 1 instead of a 2 into the WEEKDAY part of the formula.