渡された値「DateValue」がnullの場合、以下のコードは「00:00:00」を返します
vba:
Public Function forDate(ByVal DateValue As String) As Date
Dim DoDate As Date
If Not IsNull(DateValue) And DateValue <> "" Then
DoDate = CDate(FormatDateTime(DateValue, 1, 10))
forDate = DoDate
End If
End Function
「DateValue」が null の場合の処理方法??? 答えを提案してください。