Use of IsDate functions in Excel

Source: Internet
Author: User
Tags valid

First, IsDate function syntax

IsDate function: Returns a Boolean value that indicates whether an expression can be converted to a date.

Grammar

IsDate (expression)

The necessary expression parameter is a Variant that contains a date expression or a string expression, which can be determined as a date or time.

Description

IsDate returns True If the expression is a date, or can be recognized as a valid date, otherwise it returns FALSE. In Microsoft Windows, the range of valid dates is between January 1, 100 ad December 31, 9999, and the valid ranges vary from operating systems.

Second, the use of IsDate function

The following code uses the IsDate function to determine whether an expression can be converted to a date format.

Dim mydate, Yourdate, Nodate, MyCheck

MyDate = "February 12, 1969"

Yourdate = #3/11/69#

Nodate = "Volkswagen Computer"

MyCheck = IsDate (mydate) ' returns TRUE.

MyCheck = IsDate (yourdate) ' returns TRUE.

MyCheck = IsDate (nodate) ' returns FALSE.

As the code above is VBA code, it is used in a VBA environment.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.