工作日/工作日 Excel 日期

发布于 2024-12-28 19:09:23 字数 308 浏览 0 评论 0原文

如何在 Excel 中执行此操作,而无需在今年剩余时间手动输入所有内容?它的工作日。 一月

03 04 05 06 09 10 11 12 13

T WTFMTWTF

因此,对于一月,我需要所有工作日的数字和天数,如下所示: 对于 1 月,第一个工作日是 03,这一天是 T(星期二)。我需要一个公式显示在第一列 03 上,然后第二行将显示星期二的 T。我希望这种情况能持续到一月剩下的时间。 一月

03

How do you do this in excel without entering it all manually for the rest of the year? Its work days.
JANUARY

03 04 05 06 09 10 11 12 13

T W T F M T W T F

So for January I need all the work days in numbers and in days in text like below:
For January the first working day is 03 and that day is T(Tuesday). I need a formula to show on the first column 03 and then the 2nd row will show T for tuesday. I want this to continue for the rest of January.
January

03

T

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

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

发布评论

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

评论(1

橙味迷妹 2025-01-04 19:09:23

如果您不介意使用分析工具库函数,您可以尝试这种方法:

首先您需要一个假期日期列表,例如 2012 年 1 月 2 日、2012 年 4 月 6 日。在每个单元格中列出这些日期,也许在另一个工作表中,并将该列表命名为 假期

在 A1 中输入您想要查看的月份的第一天,例如 1/1/2012(如果您希望始终默认为当前月份,则使用此公式 =EOMONTH(TODAY(),-1)+1< /code>) - 将单元格格式设置为 mmm-yy

现在在 A3 中使用此公式复制到 W3

=IF(WORKDAY($A1-1,COLUMNS($A3:A3),假期)>EOMONTH($A1,0),"",WORKDAY($A1-1,COLUMNS($A3:A3) ,holidays))

使用自定义格式 dd 格式化单元格

,然后在 A4 中使用复制到 W4 的公式

=LEFT(T​​EXT(A3,"ddd"))

If you don't mind using Analysis ToolPak functions you can try this approach:

First you need a list of holiday dates, e.g. 2nd Jan 2012, 6th April 2012. List these one per cell, perhaps in another worksheet and name that list holidays.

In A1 put the first of the month you want to see, e.g. 1/1/2012 (if you want it to default to current month always then use this formula =EOMONTH(TODAY(),-1)+1) - format that cell as mmm-yy

Now use this formula in A3 copied across to W3

=IF(WORKDAY($A1-1,COLUMNS($A3:A3),holidays)>EOMONTH($A1,0),"",WORKDAY($A1-1,COLUMNS($A3:A3),holidays))

format cells with custom format dd

and then in A4 use this formula copied across to W4

=LEFT(TEXT(A3,"ddd"))

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