提问人:inglesp 提问时间:9/18/2008 最后编辑:Communityinglesp 更新时间:4/9/2014 访问量:1630
日期组件操作
Date Component Manipulation
答:
2赞
Nescio
9/18/2008
#1
VBA 中有几个日期函数 - 检查此站点
日期序列(年、月、日)
6赞
Swati
9/18/2008
#2
DateSerial(YEAR, MONTH, DAY)
将是你要找的。
DateSerial(2008, 8, 19)
返回8/19/2008
2赞
Prestaul
9/18/2008
#3
你想要 DateSerial:
Dim someDate As Date = DateSerial(year, month, day)
评论