Excel如何在跨年时将weeknum转换为日期

发布于 2025-01-10 08:32:00 字数 690 浏览 1 评论 0原文

我有一个包含“日期”列和“周数”列的表。

输入图片此处描述

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.

enter image description here

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.

enter image description here

How do I get fixed the dates?

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

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

发布评论

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

评论(1

羁绊已千年 2025-01-17 08:32:00

您可以通过去掉日期的工作日编号并加上 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.

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