Be the first user to complete this post
|
Add to List |
VBA-Excel: Date-Time Functions – DateValue()
Description:
The DateValue() function converts string to a date and return it.
Format:
DateValue(strString)
Arguments:
- strString
- Mandatory
- Type: String
- String that needs to convert into date, if year is not provided then it will take the current year by default.
Example:
Function FnDateValue() Dim strDate1 Dim strDate2 strDate1 = "10-July-2000" strDate2 = "12-June" MsgBox "Date Value of 10-July-2000 is " & DateValue(strDate1) & vbCrLf & "Date Value of 12-June is " & DateValue(strDate2) End Function
Also Read:
- VBA-Excel : Strings Functions – Right
- VBA-Excel: Array Functions – IsArray()
- VBA-Excel: String Functions – LTrim()
- VBA Excel - Cells, Ranges and Offset : Range
- VBA-Excel: Fill Excel Range Values in a 2D Array