DateValue Function

Trả về một giá trị ngày tháng từ một chuỗi ngày tháng. Chuỗi ngày tháng là một ngày tháng hoàn toàn được đại diện dưới dạng một giá trị thuộc số riêng lẻ. Bạn cũng có thể sử dụng số dãy này để tính hiệu của hai ngày tháng.

Cú pháp:

DateValue [(ngày)]

GIá trị trả về:

Ngày

Tham số :

Date: String expression that contains the date that you want to calculate. In contrast to the DateSerial function that passes years, months and days as separate numeric values, the DateValue function requests the date string to be according to either one of the date acceptance patterns defined for your locale setting (see Tools - Options - Language Settings - Languages) or to ISO date format (momentarily, only the ISO format with hyphens, e.g. "2012-12-31" is accepted).

Error codes:

5 Sai gọi thủ tục

Thí dụ :

Sub ExampleDateValue

    MsgBox DateValue("12/02/2011")

End Sub