Home > Articles > Data > Access

This chapter is from the book

This chapter is from the book

Working with Date Functions

VBA has many functions that help you deal with dates. As long as you understand how Access stores Date/Time values, you should have no problem in working with date functions and values.

→ For a description of the Date/Time datatype see "VBA DataTypes," p. 28.

In this section we go over most of the functions you use when dealing with dates.

Returning the Current Date

To return the current date (as stored on your system) use the following function, which gives you a number counting the days from 12/30/1899:

Date()

How this value is displayed depends on your regional settings. You can use the Date$() function to return a 10-character string representing the date. This string uses the format mm-dd-yyyy. The Date() function returns only the system date; if you need to include the time use the Now() function. As noted earlier, a date/time value is a number where the integer portion represents the date and the decimal portion represents the time. So the Now() function will return an integer and decimal that represents the current date and time. The Now() function defaults to displaying its value according to the regional settings on your PC. On my PC it displays 7/25/2007 5:06:34 PM.

Performing Date Arithmetic

Because dates are stored as numbers, you can do date arithmetic simply by adding or subtracting date values. However, VBA gives you a better way, the DateAdd function. Using this function, you can add 14 days, 14 weeks, 14 months, or 14 years to any date. Or you can find a time 60 hours earlier than the specified date and time.

The following is the syntax for DateAdd, where interval is a string that indicates the type of time period that you want to calculate:

DateAdd(interval, value, date)

Table 4.1 shows the various strings that can be entered as intervals. The number argument is a value or expression that specifies the number of intervals you want to calculate. The number used is an integer. If a decimal value is included, it's rounded to the nearest whole number, before performing the calculation. The date argument is a Date/Time value that is the base value to use in the calculation.

Table 4.1. Interval Settings

String Setting

Description

yyyy

Years

q

Quarters

m

Months

y

Day of year

d

Days

w

Weekdays

ww

Weeks

h

Hours

n

Minutes

s

Seconds

The y, d, and w intervals work interchangeably in the DateAdd function but have more meaning in other Date/Time functions. If the interval evaluates to a negative number, it returns an earlier date/time; a positive number returns a future date/time.

Determining the Difference Between Two Dates

The DateDiff function is used to determine the number of intervals between two date/time values. The following is the syntax for the DateDiff function, where interval is a string that indicates the type of time period used to calculate the difference between the first and second dates represented by date1 and date2 (refer to Table 4.1):

DateDiff(interval, date1, date2[,firstdayofweek[, firstweekofyear]])

Also included in the DateDiff function are two optional arguments: firstdayofweek and firstdayofyear. These are numerical constants that can be used to adjust the first day of a week or year when using the DateDiff function. Tables 4.2 and 4.3 show a list of the values for each constant. The default values are Sunday and January 1, respectively.

Table 4.2. First Day of Week Constants

Constant

Description

Integer Value

vbSunday

Sunday (the default)

1

vbMonday

Monday

2

vbTuesday

Tuesday

3

vbWednesday

Wednesday

4

vbThursday

Thursday

5

vbFriday

Friday

6

vbSaturday

Saturday

7

Table 4.3. First Week of Year Constants

Constant

Description

Integer Value

vbFirstJan1

Use the week in which January 1 occurs (the default).

1

vbFirstFourDays

Use the first week that has at least four days in the new year.

2

vbFirstFullWeek

Use the first full week of the new year.

3

The results from this function might not always be as expected:

  • If date2 falls before date1 , the function yields a negative value.
  • The DateDiff function calculates a year has passed when a new year falls between the two dates, even if there are fewer than 365 days. So when using 12/31 and 1/1 as date1 and date2, respectively, the function returns a 1.

Figure 4.1 shows how these guidelines affect the function in the Immediate window.

Figure 4.1

Figure 4.1 The DateDiff function in action.

Extracting Parts of Dates

The DatePart function is used to extract a portion of a date from a date value. A Date/Time data type contains several components that correspond to the intervals listed in Table 4.1. For example, the following expressions return the values 4, 1, and 2007, respectively:

DatePart("m",#4/1/2007#)

DatePart("d",#4/1/2007#)

DatePart("yyyy",#4/1/2007#)

The DatePart function uses the following syntax, where interval is a String value that defines the part of the date you want to extract and date is a valid Date/Time value (refer to Table 4.1 for a list of interval values):

DatePart(interval, date[,firstdayofweek[, firstweekofyear]])

Also included in the DatePart function are two optional arguments: firstdayofweek and firstdayofyear. These are numerical constants that can be used to adjust the first day of a week or year when using the DatePart function. Tables 4.2 and 4.3 show a list of the values for each constant. The default values are Sunday and January 1, respectively.

Creating Dates from the Individual Parts

With DatePart you extract part of a date; conversely, with the DateSerial function you combine the parts of a date to return a date value. The DateSerial function uses the following syntax, where Year, Month, and Day can be any expression that evaluates to an integer value that represents the respective date part:

DateSerial(Year, Month, Day)

There are some rules for each of the arguments:

  • Year is required and must be equal to an integer from 100 to 9999.
  • Month is required, and integers from 1 to 12 (positive or negative) are considered.
  • Day is required, and integers from 0 to 31 (positive or negative) are considered.

The DateSerial function can take integer values outside those ranges and calculate the difference to return a date value. This makes it very powerful if you use expressions for the arguments. For example, the following expression returns June 5, 2008 because the 18th month from the start of 2007 is June:

DateSerial(2007,18,5)

Similarly, the following returns May 15, 2007, by using the 30 days in April and adding the difference of 15 days to the next month:

DateSerial(2007,4,45)

Although this shouldn't be used as a substitute for DateAdd or DateDiff, it can make it easy to create dates from calculated values.

Creating Dates from String Values

The DateValue function can be used to return a date value from a string value; it uses the following syntax, where stringexpression must conform to the formats used by the system's Regional settings:

DateValue(stringexpression)

The following three expressions return the date June 1, 2007:

DateValue("6/1/2007")

DateValue("June 1, 2007")

DateValue("1 Jun 07")

Extracting a Specific Date or Time Portion

Table 4.4 lists several functions that return a specific portion of a date or time value. The syntax for these functions is simple:

Functionname(date/time)

Table 4.4. Date Component Functions

Function

Result

Day(date)

Returns the day of the month as an integer between 1 and 31

Hour(time)

Returns the hour as an integer between 0 and 23

Minute(time)

Returns the minute as an integer between 0 and 59

Second(time)

Returns the second as an integer between 0 and 59

Month(date)

Returns the month as an integer between 1 and 12

Year(date)

Returns the year as an integer between 100 and 9999

A Conversion and Date Example

Sometimes you might need to round a time value to the nearest quarter hour or hour. This example uses some of the conversion and date/time functions previously discussed to accomplish that task.

  1. Create a blank form and put two text boxes on it. Label the boxes txtTime and txtResult.
  2. Add an option group to the form with the options Hour and Quarter Hour. Name the group optType.
  3. Add a button to the form (turn off the wizard first). Name the button cmdRound.
  4. Set the Record Selectors and Navigation buttons to No. Set Scroll Bars to neither.
  5. In the On Click event of the button use the following code:
    Private Sub cmdRound_Click()
    Dim intHrs As Integer, intMin As Integer
    Dim dteTime As Date
    ' convert entered time to Time value
    
    dteTime = CDate(Me.txtTime)
    'extract parts of time
    
    intHrs = DatePart("h", dteTime)
    intMin = DatePart("n", dteTime)
    
    If Me.optType = 1 Then 'test for nearest type
        'Round to nearest hour
        If intMin >= 30 Then
            dteTime = DateAdd("h", 1, dteTime)
            dteTime = DateAdd("n", -intMin, dteTime)
        Else
            dteTime = DateAdd("n", -intMin, dteTime)
        End If
    Else
        'Round to quarter hour
        Select Case intMin
            Case Is < 8
                intMin = 0
            Case 8 To 23
                intMin = 15
            Case 24 To 38
                intMin = 30
            Case 39 To 53
                intMin = 45
            Case Else
                intHrs = intHrs + 1
                intMin = 0
            End Select
        dteTime = TimeSerial(intHrs, intMin, 0)
    End If
    
    'Populate Result control
    Me.txtResult = dteTime
    
    End Sub
    
  6. Save form as frmRound (see Figure 4.2).
    Figure 4.2

    Figure 4.2 The completed frmRound showing an example of input and result.

InformIT Promotional Mailings & Special Offers

I would like to receive exclusive offers and hear about products from InformIT and its family of brands. I can unsubscribe at any time.

Overview


Pearson Education, Inc., 221 River Street, Hoboken, New Jersey 07030, (Pearson) presents this site to provide information about products and services that can be purchased through this site.

This privacy notice provides an overview of our commitment to privacy and describes how we collect, protect, use and share personal information collected through this site. Please note that other Pearson websites and online products and services have their own separate privacy policies.

Collection and Use of Information


To conduct business and deliver products and services, Pearson collects and uses personal information in several ways in connection with this site, including:

Questions and Inquiries

For inquiries and questions, we collect the inquiry or question, together with name, contact details (email address, phone number and mailing address) and any other additional information voluntarily submitted to us through a Contact Us form or an email. We use this information to address the inquiry and respond to the question.

Online Store

For orders and purchases placed through our online store on this site, we collect order details, name, institution name and address (if applicable), email address, phone number, shipping and billing addresses, credit/debit card information, shipping options and any instructions. We use this information to complete transactions, fulfill orders, communicate with individuals placing orders or visiting the online store, and for related purposes.

Surveys

Pearson may offer opportunities to provide feedback or participate in surveys, including surveys evaluating Pearson products, services or sites. Participation is voluntary. Pearson collects information requested in the survey questions and uses the information to evaluate, support, maintain and improve products, services or sites, develop new products and services, conduct educational research and for other purposes specified in the survey.

Contests and Drawings

Occasionally, we may sponsor a contest or drawing. Participation is optional. Pearson collects name, contact information and other information specified on the entry form for the contest or drawing to conduct the contest or drawing. Pearson may collect additional personal information from the winners of a contest or drawing in order to award the prize and for tax reporting purposes, as required by law.

Newsletters

If you have elected to receive email newsletters or promotional mailings and special offers but want to unsubscribe, simply email information@informit.com.

Service Announcements

On rare occasions it is necessary to send out a strictly service related announcement. For instance, if our service is temporarily suspended for maintenance we might send users an email. Generally, users may not opt-out of these communications, though they can deactivate their account information. However, these communications are not promotional in nature.

Customer Service

We communicate with users on a regular basis to provide requested services and in regard to issues relating to their account we reply via email or phone in accordance with the users' wishes when a user submits their information through our Contact Us form.

Other Collection and Use of Information


Application and System Logs

Pearson automatically collects log data to help ensure the delivery, availability and security of this site. Log data may include technical information about how a user or visitor connected to this site, such as browser type, type of computer/device, operating system, internet service provider and IP address. We use this information for support purposes and to monitor the health of the site, identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents and appropriately scale computing resources.

Web Analytics

Pearson may use third party web trend analytical services, including Google Analytics, to collect visitor information, such as IP addresses, browser types, referring pages, pages visited and time spent on a particular site. While these analytical services collect and report information on an anonymous basis, they may use cookies to gather web trend information. The information gathered may enable Pearson (but not the third party web trend services) to link information with application and system log data. Pearson uses this information for system administration and to identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents, appropriately scale computing resources and otherwise support and deliver this site and its services.

Cookies and Related Technologies

This site uses cookies and similar technologies to personalize content, measure traffic patterns, control security, track use and access of information on this site, and provide interest-based messages and advertising. Users can manage and block the use of cookies through their browser. Disabling or blocking certain cookies may limit the functionality of this site.

Do Not Track

This site currently does not respond to Do Not Track signals.

Security


Pearson uses appropriate physical, administrative and technical security measures to protect personal information from unauthorized access, use and disclosure.

Children


This site is not directed to children under the age of 13.

Marketing


Pearson may send or direct marketing communications to users, provided that

  • Pearson will not use personal information collected or processed as a K-12 school service provider for the purpose of directed or targeted advertising.
  • Such marketing is consistent with applicable law and Pearson's legal obligations.
  • Pearson will not knowingly direct or send marketing communications to an individual who has expressed a preference not to receive marketing.
  • Where required by applicable law, express or implied consent to marketing exists and has not been withdrawn.

Pearson may provide personal information to a third party service provider on a restricted basis to provide marketing solely on behalf of Pearson or an affiliate or customer for whom Pearson is a service provider. Marketing preferences may be changed at any time.

Correcting/Updating Personal Information


If a user's personally identifiable information changes (such as your postal address or email address), we provide a way to correct or update that user's personal data provided to us. This can be done on the Account page. If a user no longer desires our service and desires to delete his or her account, please contact us at customer-service@informit.com and we will process the deletion of a user's account.

Choice/Opt-out


Users can always make an informed choice as to whether they should proceed with certain services offered by InformIT. If you choose to remove yourself from our mailing list(s) simply visit the following page and uncheck any communication you no longer want to receive: www.informit.com/u.aspx.

Sale of Personal Information


Pearson does not rent or sell personal information in exchange for any payment of money.

While Pearson does not sell personal information, as defined in Nevada law, Nevada residents may email a request for no sale of their personal information to NevadaDesignatedRequest@pearson.com.

Supplemental Privacy Statement for California Residents


California residents should read our Supplemental privacy statement for California residents in conjunction with this Privacy Notice. The Supplemental privacy statement for California residents explains Pearson's commitment to comply with California law and applies to personal information of California residents collected in connection with this site and the Services.

Sharing and Disclosure


Pearson may disclose personal information, as follows:

  • As required by law.
  • With the consent of the individual (or their parent, if the individual is a minor)
  • In response to a subpoena, court order or legal process, to the extent permitted or required by law
  • To protect the security and safety of individuals, data, assets and systems, consistent with applicable law
  • In connection the sale, joint venture or other transfer of some or all of its company or assets, subject to the provisions of this Privacy Notice
  • To investigate or address actual or suspected fraud or other illegal activities
  • To exercise its legal rights, including enforcement of the Terms of Use for this site or another contract
  • To affiliated Pearson companies and other companies and organizations who perform work for Pearson and are obligated to protect the privacy of personal information consistent with this Privacy Notice
  • To a school, organization, company or government agency, where Pearson collects or processes the personal information in a school setting or on behalf of such organization, company or government agency.

Links


This web site contains links to other sites. Please be aware that we are not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of each and every web site that collects Personal Information. This privacy statement applies solely to information collected by this web site.

Requests and Contact


Please contact us about this Privacy Notice or if you have any requests or questions relating to the privacy of your personal information.

Changes to this Privacy Notice


We may revise this Privacy Notice through an updated posting. We will identify the effective date of the revision in the posting. Often, updates are made to provide greater clarity or to comply with changes in regulatory requirements. If the updates involve material changes to the collection, protection, use or disclosure of Personal Information, Pearson will provide notice of the change through a conspicuous notice on this site or other appropriate way. Continued use of the site after the effective date of a posted revision evidences acceptance. Please contact us if you have questions or concerns about the Privacy Notice or any objection to any revisions.

Last Update: November 17, 2020