Date and time Function
VBA gives us lots of Date and Time Functions to help the us to convert date and time from one format to another or to change the date or time value in the format that suits our requirement.
Date functions
thees Date function are used to work with the date value, we can retrieve any part from the date value,
Function
|
Description
|
Date
|
A Function, which returns the current system date.
|
CDate
|
A Function, which converts a given input to date.
|
DateAdd
|
A Function, which returns a date to which a specified time
interval has been added.
|
DateDiff
|
A Function, which returns the difference between two time
period.
|
DatePart
|
A Function, which returns a specified part of the given input
date value.
|
DateSerial
|
A Function, which returns a valid date for the given year,
month, and date.
|
FormatDateTime
|
A Function, which formats the date based on the supplied
parameters.
|
IsDate
|
A Function, which returns a Boolean Value whether or not the
supplied parameter is a date.
|
Day
|
A Function, which returns an integer between 1 and 31 that
represents the day of the specified date.
|
Month
|
A Function, which returns an integer between 1 and 12 that
represents the month of the specified date.
|
Year
|
A Function, which returns an integer that represents the year of
the specified date.
|
MonthName
|
A Function, which returns the name of the particular month for
the specified date.
|
WeekDay
|
A Function, which returns an integer(1 to 7) that represents the
day of the week for the specified day.
|
WeekDayName
|
A Function, which returns the weekday name for the specified
day.
|
Time functions
Thees Time function are used to work with the Time , we can retrieve any part from the time value from the given time ,
Function
|
Description
|
Now
|
A Function, which returns the current system date and time.
|
Hour
|
A Function, which returns an integer between 0 and 23 that represents the hour part of the given time.
|
Minute
|
A Function, which returns an integer between 0 and 59 that represents the minutes part of the given time.
|
Second
|
A Function, which returns an integer between 0 and 59 that represents the seconds part of the given time.
|
Time
|
A Function, which returns the current system time.
|
Timer
|
A Function, which returns the number of seconds and milliseconds since 12:00 AM.
|
TimeSerial
|
A Function, which returns the time for the specific input of hour, minute and second.
|
TimeValue
|
A Function, which converts the input string to a time format.
|
0 Comments