|
生成随机日期
原文:
http://bcd.office-cn.net/article.asp?id=30
1. 启动 Microsoft Access,并打开数据库。
2. 按Alt+F11进入VBA编辑器,点击菜单插入->模块。
3. 键入或粘贴以下代码模块中:- Function RandomDateInRange(LowerDate As Date, UpperDate As Date) As Date
- RandomDateInRange = Int((UpperDate - LowerDate + 1) * Rnd + LowerDate)
- End Function
- Function RandomDate() As Date
- RandomDate = Int(Rnd() * CDbl(Date + 1))
- End Function
复制代码 4. 按Crtl+S,保存项目。
5. 测试:在立即窗口,键入以下行,在每行后按 ENTER 键:- ? RandomDateInRange(#1/1/2001#, #12/31/2001#)
- ? RandomDate()
复制代码 |
|