Be the first user to complete this post

  • 0
Add to List

VBA-Excel: Date-Time Functions – CDate()

Description: 

The CDate() function converts a valid date and time expression to Type Date

Format:

CDate(date)

Arguments:
  • date
    • Mandatory
    • The expression will be converted into Type Date


Example:

Function FnCDate()
 Dim strDate
 Dim intDate
 Dim strTime

  strDate = "June 24, 2013"    

    intDate = #12/6/1985#    

    strTime = "15:30:15 PM"

    MsgBox CDate(strDate)    

    MsgBox CDate(intDate)    

    MsgBox CDate(strTime)

End Function
Cdate()
Cdate()



Also Read:

  1. VBA-Excel : Strings Functions – Left
  2. VBA-Excel : Strings Functions – Ucase
  3. VBA Excel – Looping Through a Range of Cells
  4. VBA-Excel: Array Functions – Filter()
  5. VBA-Excel: Select and Activate Cells - Activate