IsDate Function

Tests if a numeric or string expression can be converted to a Date variable.

தொடரமைப்பு:


IsDate (Expression)

Return value:

Bool

அளவுருக்கள்:

Expression: Any numeric or string expression that you want to test. If the expression can be converted to a date, the function returns True, otherwise the function returns False.

பிழையான குறியீடுகள்:

5 செல்லாத செயல்முறை அழைப்பு

எடுத்துக்காட்டு:


Sub ExampleIsDate
Dim sDateVar As String
    sDateVar = "12.12.1997"
    Print IsDate(sDateVar) ' Returns True
    sDateVar = "12121997"
    Print IsDate(sDateVar) ' Returns False
End Sub

Please support us!