Follow this blog:
RSS
Email Alert

Microsoft Office

Count the number of Excel records that fall between two dates

Takeaway: Using Excel’s COUNTIFS() function, you can quickly count records that fall between two dates.

Many records include a date stamp of some sort. Usually the date marks an event or the input date. Either way, counting the number of records that fall between two dates is easy using the COUNTIFS() function (which isn’t available in Excel 2003 or earlier). To illustrate, the following sheet has a number of date-related records.  The formula in cell B3

=COUNTIFS(A5:A12,">="&B1,A5:A12,"<="&B2)

returns the number of dates (records) in A5:A12 that fall between the  dates in B1 and B2.

The COUNTIFS() function uses the following syntax to specify multiple criteria to determine which values in a range to count:

COUNTIFS(countrange1, criteria1, [countrange2, criteria2]...)

In this example, the count range is the same for each criteria set, the dates in column A. The first criteria set counts all the dates in A5:A12 that are equal to or fall after the date value in B1. The second criteria set counts dates that are equal to or occur before the date value in B2.

The only stipulation with this particular setup is that the value in B1 must be less than the value in B2. If you enter them backward, the function will return 0, instead of an error. To apply a conditional format to alert your users, do the following:

  1. Select B2.
  2. Click the Home tab and then click Conditional Formatting in the Styles group.
  3. Choose New Rule.
  4. Choose the Format Only Cells That Contain option.
  5. Retain Cell Value in the first dropdown-that’s what you want.
  6. Choose Less Than from the second dropdown.
  7. Enter =$B$1 in the final control.
  8. Click Format.
  9. Click the Fill tab, choose a background color, and click OK.
  10. Click OK again.

The format won’t stop a user from making the mistake, but will alert them that the value they’ve chosen isn’t appropriate.

Get IT Tips, news, and reviews delivered directly to your inbox by subscribing to TechRepublic’s free newsletters.

Susan Harkins

About Susan Harkins

Susan Sales Harkins is an IT consultant, specializing in desktop solutions. Previously, she was editor in chief for The Cobb Group, the world's largest publisher of technical journals.

Susan Harkins

Susan Harkins
Susan Sales Harkins is an IT consultant, specializing in desktop solutions. Previously, she was editor in chief for The Cobb Group, the world's largest publisher of technical journals.
11
Comments

Join the conversation!

Follow via:
RSS
Email Alert