在Excel工作表中,我有一个日期(2018年10月)。
由此,我必须在另一栏中填充该月的开始日期和结束日期以及工作日数。
答案 0 :(得分:0)
您要寻找的格式如下:reference
Range("C5") = Format(date_example, "mmm-yy")
答案 1 :(得分:0)
尝试一下
Sub DateTest()
'convert the cell to text format and prints the date
Range("C5").NumberFormat = "@"
Range("C5") = Format(#10/18/2018#, "mmm-yy")
'gets the no of days between two dates
MsgBox "No of days : " & DateDiff("d", #1/1/2019#, Date, vbMonday)
'gets the no of working days between two dates
MsgBox "No of working days : " & WorksheetFunction.NetworkDays(#1/1/2019#, Date)
End Sub