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: Date-Time Functions – Month(), Year() and MonthName()
- VBA-Excel: Date-Time Functions – DateSerial()
- VBA-Excel : 3D-Ranges - Working with Multiple WorkSheets At The Simultaneously
- VBA-Excel: Date-Time Functions – DatePart()
- VBA-Excel: Arrays – Two Dimension, Dynamic Array