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: String Functions – LTrim()
- VBA-Excel : 3D-Ranges - Working with Multiple WorkSheets At The Simultaneously
- VBA-Excel: Date-Time Functions – IsDate()
- VBA-Excel: Select and Activate Cells - Select
- VBA-Excel: Get all the WeekDays or Working days in Specified Date Range, (excluding Satudays and Sundays)
- VBA-Excel: Fill Excel Range Values in a 2D Array
- VBA-Excel: String Functions – RTrim()
- VBA-Excel: String Functions – Len()