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: Get all the WeekDays or Working days in Specified Date Range, (excluding Satudays and Sundays)
- VBA-Excel: Array Functions – Split()
- VBA-Excel : Strings Functions – Lcase
- VBA-Excel: Date-Time Functions – WeekDay() and WeekDayName()
- VBA-Excel: Array Functions – Join() – Converts Array to String