Skip to content
Free Excel Tutorials
  • Home
  • Excel For Beginners
  • Excel Intermediate
  • Advanced Excel For Experts

Data Analysis

  • Conditional Formatting New Rule with Formulas in Excel
  • Conditional Formatting Icon Sets Examples in Excel
  • How to Create Thermometer Chart in Excel
  • How to conditionally sum numeric data in an Excel table using SUMIFS
  • Excel Frequency Function Example

References

  • Create hyperlink with VLOOKUP in Excel
  • Merge tables with VLOOKUP in Excel
  • How to use Excel ROWS Function
  • Complete List of Excel Lookup and Reference Functions, References and Examples
  • How to use Excel MATCH Function

Data Validations

  • Excel Data validation require unique number
  • Excel Data validation number multiple 100
  • Excel Data validation allow weekday only
  • Excel Data validation with conditional list
  • Excel Data validation date in next 30 days

Count dates in given year in Excel

by

This tutorial shows how to Count dates in given year in Excel using the example below;

Formula

=SUMPRODUCT(--(YEAR(dates)=year))

Explanation

To count dates in a given year, you can use the SUMPRODUCT and YEAR functions. In the example shown, the formula in E5 is:

=SUMPRODUCT(--(YEAR(dates)=D5))

where “dates” the a named range B5:B15.

How this formula works

The YEAR function extracts the year from a valid date. In this case, we are giving YEAR and array of dates in the named range “dates”, so we get back an array of results:

{2018;2017;2019;2019;2017;2019;2017;2019;2019;2018;2018}

Each date is compared to the year value in column D, to produce an array or TRUE FALSE values:

{FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE}

For the formula in E5, TRUE values are cases where dates are in the year 2017, and FALSE values represent dates in any other year.

Next, we use a double negative to coerce the TRUE FALSE values to 1’s and 0’s. Inside SUMPRODUCT, we now have:

=SUMPRODUCT({0;1;0;0;1;0;1;0;0;0;0})

Finally, with only one array to work with, SUMPRODUCT sums the items in the array and returns a result, 3.

Post navigation

Previous Post:

How to use Excel CHOOSE Function

Next Post:

Customize Ribbon In Excel

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Learn Basic Excel

Ribbon
Workbook
Worksheets
Format Cells
Find & Select
Sort & Filter
Templates
Print
Share
Protect
Keyboard Shortcuts

Categories

  • Charts
  • Data Analysis
  • Data Validation
  • Excel Functions
    • Cube Functions
    • Database Functions
    • Date and Time Functions
    • Engineering Functions
    • Financial Functions
    • Information Functions
    • Logical Functions
    • Lookup and Reference Functions
    • Math and Trig Functions
    • Statistical Functions
    • Text Functions
    • Web Functions
  • Excel VBA
  • Excel Video Tutorials
  • Formatting
  • Grouping
  • Others

Logical Functions

  • AND function: Description, Usage, Syntax, Examples and Explanation
  • How to use IFS function in Excel
  • Nested IF function example in Excel
  • How to return blank in place of #DIV/0! error in Excel
  • Complete List of Excel Logical Functions, References and Examples

Date Time

  • DAY function: Description, Usage, Syntax, Examples and Explanation
  • Convert Unix time stamp to Excel date
  • HOUR function: Description, Usage, Syntax, Examples and Explanation
  • How to calculate quarter from date in Excel
  • Convert Excel time to decimal minutes

Grouping

  • Group arbitrary text values in Excel
  • Categorize text with keywords in Excel
  • If cell contains one of many things in Excel
  • Group times into unequal buckets in Excel
  • Group numbers at uneven intervals in Excel

General

  • Subtotal by invoice number in Excel
  • Count cells that contain errors in Excel
  • How to count total columns in range in Excel
  • How to count total number of cells in a rectangular range in Excel
  • How to add sequential row numbers to a set of data in Excel
© 2026 xlsoffice . All Right Reserved. | Teal Smiles | Abbreviations And Their Meaning