vba调用date函数
时间: 2023-07-19 07:10:15 浏览: 112
VB日期函数
VBA 中的 Date 函数用于返回当前日期。
要在 VBA 代码中调用 Date 函数并将结果存储在变量中,可以使用以下代码:
```
Dim currentDate As Date
currentDate = Date
```
这将调用 Date 函数,并将当前日期作为结果存储在 currentDate 变量中。可以使用 currentDate 变量在代码中引用当前日期。
阅读全文