作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有这段代码只是卡在位于 VBA 项目中的工作表中,该项目自动填充 Excel 表单的日期。我一直在修改它,让它在个人在单元格 I6 中输入姓名时填充当天的日期。在第 8 行,
r.Offset(0, 12).Value = Date + 1
Private Sub Worksheet_Change(ByVal Target As Range)
Dim I As Range, AF As Range, Inte As Range, r As Range
Set I = Range("I6")
Set Inte = Intersect(I, Target)
If Inte Is Nothing Then Exit Sub
Application.EnableEvents = False
For Each r In Inte
r.Offset(0, 12).Value = Date + 1
Next r
Application.EnableEvents = True
End Sub
最佳答案
已经有跳过周末的功能。无需重新发明轮子。只需使用 WORKDAY
功能
r.Offset(0, 12) = Application.WorksheetFunction.Workday(Date, 1)
关于自动填充第二天日期的 VBA Excel 代码,但仅适用于工作日,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51991258/
我是一名优秀的程序员,十分优秀!