在VBA中,可以使用Date
函数来返回当前日期。可以将该函数的返回值赋值给一个变量,并在需要的地方使用。
以下是一个示例代码:
Sub GetCurrentDate()
Dim currentDate As Date
currentDate = Date
MsgBox "当前日期是:" & currentDate
End Sub
此代码中,我们使用Date
函数获取当前日期,并将其赋值给名为currentDate
的变量。然后,使用MsgBox
函数在消息框中显示当前日期。