求某月的最后一天的函数
时 间:2004-11-10 00:00:00
作 者:朱亦文 ID:61 城市:岳阳
摘 要:通过某个日期,求取该日期所在月份的最后一天的日期.
正 文:
由于每个月的天数是不一样的,因此每个月最后一天的日期也不固定的,因此本函数通过循环,判断是否出现新的月份,来确定该月的最后一日的日期.
Public Function MonLastDay(dFirst As Date) As Date Dim dm As Date Dim m As Integer dm = dFirst m = Month(dm) Do While Month(dm) = m dm = dm + 1 Loop MonLastDay = dm - 1 End Function |
下面是由ACCESS中国的李啸林版主提供:
Public Function MonLastDay1(dFirst As Date) As Date MonLastDay1 = DateAdd("d", -1, CDate(DatePart("yyyy", DateAdd("m", 1, dFirst)) & _ "-" & DatePart("m", DateAdd("m", 1, dFirst)))) End Function |
下面是由ACCESS中国的AlexLiu提供:
Public Function MonLastDay1(dFirst As Date) As Date MonLastDay1 = DateSerial(Year(dFirst), Month(dFirst) + 1, 1) - 1 End Function |
Access软件网官方交流QQ群 (群号:54525238) Access源码网店
常见问答:
技术分类:
源码示例
- 【源码QQ群号19834647...(12.17)
- 【Access DCount示...(12.02)
- Access对子窗体数据进行批...(10.30)
- 最精简的组合框行来源数据快速输...(10.25)
- Access仿平台的多值选择器...(10.24)
- 【Access日期区间段查询】...(10.22)
- 【Access源码示例】VBA...(10.12)
- Access累乘示例,Acce...(10.09)
- 数值8.88,把整数8去掉,转...(10.08)
- 【Access自定义函数】一个...(09.30)
学习心得
最新文章
- Microsoft ActiveX...(12.04)
- 把一种单位的数量,换算成多个单位的...(12.03)
- 【Access DCount示例】...(12.02)
- Access判断多条明细的配方或订...(11.30)
- 如何让后台数据库在局域网共享时,且...(11.29)
- 【Access月初月末日期设置方法...(11.29)
- 【Access IIF函数嵌套示例...(11.26)
- Access快速开发平台--使用组...(11.25)
- Access快速开发平台--对上传...(11.22)
- Access快速开发平台企业版--...(11.18)