DATE()
Access 2007 中是否有与 Excel 功能等效的功能?
答案1
Dim year As Integer
Dim month As Integer
Dim day As Integer
Dim date As Date
date = DateSerial(year, month, day)
也可以看看日期和时间函数。
DATE()
Access 2007 中是否有与 Excel 功能等效的功能?
Dim year As Integer
Dim month As Integer
Dim day As Integer
Dim date As Date
date = DateSerial(year, month, day)
也可以看看日期和时间函数。