ICode9

精准搜索请尝试: 精确搜索
  • Excel 判断是否日期格式2022-06-22 10:32:42

    因为Excel并没有提供”IsDate“这类判断日期格式的函数,所以通过VBA添加自定义函数 Function IsDate(myRange As Range) If VBA.IsDate(myRange.Value) Then IsDate = "true" Else IsDate = "false" End If End Function 步骤如截图 1.打开VBA编辑器快捷键为:Alt + F11 2.第 5 步

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有