工作日/工作日 Excel 日期
如何在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您不介意使用分析工具库函数,您可以尝试这种方法:
首先您需要一个假期日期列表,例如 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(TEXT(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 asmmm-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"))