发布网友 发布时间:2022-04-22 04:02
共3个回答
热心网友 时间:2022-06-17 20:05
Sub 当前日期()
Dim idate As Date
idate = Date
ActiveSheet.Range("A1").Value = idate
End Sub
热心网友 时间:2022-06-17 20:06
有2个VBA函数可以获取当前系统日期:
date()
now()
热心网友 时间:2022-06-17 20:06
sub test ()
range("A1")=date
end sub