Be the first user to complete this post
|
Add to List |
VBA-Excel: Date-Time Functions – DateSerial()
Description:
The DateSerial() function returns the Date type based on the parameters provided (year, month and date).
Format:
DateSerial(year,month,day)
Arguments:
- Year
- Mandatory
- Type: Numeric or Any Numeric Expression
- Between 100 and 9999, values between 0-99 will be considered as 1900-1999
- Month
- Mandatory
- Type: Numeric or Any Numeric Expression
- If it’s greater than 12, than respective number will be added to the date, Example say 13, mean month will be January and year will be increased by one.
- Date
- Mandatory
- Type: Numeric or Any Numeric Expression
- If it’s greater than 31 and month is 12, than respective number will be added to the date, Example say 44, mean month will be January and year will be increased by one and date will be 13.
Example:
Function FnDateSerial() Dim varYear Dim varMonth Dim varDate varYear = "2013" varMonth = "12" varDate = "44" strDate = DateSerial(varYear, varMonth, varDate) MsgBox "Date is " & strDate End Function
Also Read:
- VBA-Excel: Date-Time Functions – WeekDay() and WeekDayName()
- VBA-Excel: String Functions – Replace()
- VBA-Excel: Array Functions – Filter()
- VBA-Excel: Array Functions – Join() – Converts Array to String
- VBA-Excel: Date-Time Functions – Day()