ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

搜索
EH技术汇-专业的职场技能充电站 妙哉!函数段子手趣味讲函数 Excel服务器-会Excel,做管理系统 效率神器,一键搞定繁琐工作
HR薪酬管理数字化实战 Excel 2021函数公式学习大典 Excel数据透视表实战秘技 打造核心竞争力的职场宝典
让更多数据处理,一键完成 数据工作者的案头书 免费直播课集锦 ExcelHome出品 - VBA代码宝免费下载
用ChatGPT与VBA一键搞定Excel WPS表格从入门到精通 Excel VBA经典代码实践指南
查看: 138|回复: 2

解决计算1900/01/01以前年龄问题

[复制链接]

TA的精华主题

TA的得分主题

发表于 2024-9-21 07:51 | 显示全部楼层 |阅读模式
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用  · 内置多项VBA编程加强工具       ★ 免费下载 ★      ★使用手册
本帖最后由 lss001 于 2024-9-21 12:16 编辑

Public Function AgeFunc(stdate As Variant, endate As Variant)
    Dim stvar$, stmon$, stday$, styr$
    Dim endvar$, endmon$, endday$
    Dim endyr$, stmonf%, stdayf%
    Dim styrf%, endmonf%, enddayf%
    Dim endyrf%, years%, fx%


    fx = 0
    stvar = sfunc("/", stdate)
    stmon = Left(stdate, sfunc("/", stdate) - 1)
    stday = Mid(stdate, stvar + 1, sfunc("/", stdate, sfunc("/", stdate) + 1) - stvar - 1)
    If Len(stday) = 1 Then fx = fx + 1
    If Len(stmon) = 2 Then fx = fx + 1
    styr = Right(stdate, Len(stdate) - (sfunc("/", stdate) + 1) - stvar + fx)
    stmonf = CInt(stmon)
    stdayf = CInt(stday)
    styrf = CInt(styr)
    If stmonf < 1 Or stmonf > 12 Or stdayf < 1 Or stdayf > 31 Or styrf < 1 Then
        AgeFunc = "Invalid Date"
        Exit Function
    End If


    fx = 0
    endvar = sfunc("/", endate)
    endmon = Left(endate, sfunc("/", endate) - 1)
    endday = Mid(endate, endvar + 1, sfunc("/", endate, sfunc("/", endate) + 1) - endvar - 1)
    If Len(endday) = 1 Then fx = fx + 1
    If Len(endmon) = 2 Then fx = fx + 1
    endyr = Right(endate, Len(endate) - (sfunc("/", endate) + 1) - endvar + fx)
    endmonf = CInt(endmon)
    enddayf = CInt(endday)
    endyrf = CInt(endyr)
    If endmonf < 1 Or endmonf > 12 Or enddayf < 1 Or enddayf > 31 Or endyrf < 1 Then
        AgeFunc = "Invalid Date"
        Exit Function
    End If


    years = endyrf - styrf
    If stmonf > endmonf Then
        years = years - 1
    End If
If stmonf = endmonf And stdayf > enddayf Then
        years = years - 1
    End If
    If years < 0 Then
        AgeFunc = "Invalid Date"
    Else
        AgeFunc = years
    End If
End Function

Public Function sfunc(x As Variant, y As Variant, Optional z As Variant)
sfunc = Application.WorksheetFunction.Search(x, y, z)
End Function

Sub abc() '使用示例
    Dim startdate, enddate
    startdate = "01/01/1887"
    enddate = "02/02/1945"
    af = AgeFunc(startdate, enddate)
End Sub

TA的精华主题

TA的得分主题

发表于 2024-9-21 09:44 | 显示全部楼层
大哥,你这是求助还是分享还是炫技还是保存“云盘”啊?友情提示一下,代码即使再优秀,一个字的注释也没有,后期看起来也费劲,倒不如重新敲。

TA的精华主题

TA的得分主题

 楼主| 发表于 2024-9-21 09:50 来自手机 | 显示全部楼层
本帖最后由 lss001 于 2024-10-8 17:53 编辑

做笔记以备份
您需要登录后才可以回帖 登录 | 免费注册

本版积分规则

手机版|关于我们|联系我们|ExcelHome

GMT+8, 2024-11-11 05:02 , Processed in 1.046970 second(s), 28 queries , Gzip On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

沪公网安备 31011702000001号 沪ICP备11019229号-2

本论坛言论纯属发表者个人意见,任何违反国家相关法律的言论,本站将协助国家相关部门追究发言者责任!     本站特聘法律顾问:李志群律师

快速回复 返回顶部 返回列表