请教各位一个艰难的问题
我希望将类似19900805这样的日期自动保存为1990-08-05的形式
可是找了很多函数比如Cdata,format等都不行,我不知道是否有其他的函数
我的程序如下:
Public Const x = "20091224"Public Function wode(x) Dim a '因为我不知道Isdata()函数参数必须要用什么样的类型,所以没有规定 Dim b Dim c Dim sql a = Mid(x, 1, 4) b = Mid(x, 5, 2) c = Mid(x, 7, 2) sql = "#" & b & "/" & c & "/" & a & "#" MsgBox sj If IsDate(sj) = True Then MsgBox "ok" Else MsgBox "no" End IfEnd Function