HomeGoogle DocsSpreadsheetFind Missing Sequential Dates in a List in Google Sheets

Find Missing Sequential Dates in a List in Google Sheets

Published on

I prefer to use array formulas whenever possible to complete tasks in Google Sheets. I have an array formula to offer for finding missing sequential dates or numbers in a list in Google Sheets.

For example, let’s say you have a list of dates in column A in Google Sheets. You want to find the missing dates in this list, regardless of whether the dates are ordered in sequential order or not.

In the following example, column A contains the list, and column C contains the missing dates that are returned using an array formula in cell C2.

Example of finding missing sequential dates in a list in Google Sheets:

Formula to Find Missing Sequential Dates in Google Sheets

How to Find Missing Sequential Dates in Google Sheets

Syntax:

LET(name1, value_expression1, [name2, …], [value_expression2, …], formula_expression)

Here is the array formula I used in cell C2 to list the missing sequential dates.

Master Formula:

=LET(
     range, A2:A,
     seq, SEQUENCE(DAYS(MAX(range),MIN(range))+1,1,MIN(range),1),
     FILTER(seq,IFNA(XMATCH(seq,range))="")
)

Where:

  • range: The range of cells that contains the list of dates.
  • seq: The list of all possible dates between the first and last dates in the range.
  • formula_expression: The formula that filters (extracts) the missing dates from the list of possible dates.

You just specify the range containing the list (here, it is A2:A). The formula will take care of the rest.

This is an array formula, so it will cover all the dates in the list in column A and then populate the missing sequential dates in column C.

You can simply enter the array formula in cell C2. You do not need to copy and paste the formula to the cells below. However, make sure that the cell range C2:C is blank before entering the formula.

Formula Explanation

The range is A2:A, so it does not require any further explanation. Let’s see the seq and formula_expression parts in detail below.

I have used eight native Google Sheets functions in the above formula. They are;

  • DAYS, MIN, and MAX
  • SEQUENCE
  • LET
  • XMATCH, IFNA, and FILTER

I will try to explain the role of each one of them in a clear-cut manner in populating missing sequential dates in Google Sheets.

Generating Sequential Dates Based on Start and End Dates in the List: seq Part

We can use the following SEQUENCE formula (seq) to generate a list of sequential dates from 01/09/2019 (the minimum date in the range) to 15/09/2019 (the maximum date in the range).

SEQUENCE(DAYS(MAX(range),MIN(range))+1,1,MIN(range),1)

Expanded Form:

=SEQUENCE(DAYS(MAX(A2:A),MIN(A2:A))+1,1,MIN(A2:A),1)

Syntax:

SEQUENCE(rows, [columns], [start], [step])

Explanation:

  • The rows argument specifies the number of values to return. This number is equal to the number of days between the minimum and maximum dates in A2:A. The DAYS(MAX(A2:A),MIN(A2:A))+1 formula returns that number.
  • The columns argument is optional. We set it to 1 because we want the sequential dates to be in one column.
  • The start argument specifies the starting value. In this case, we want to start with the minimum date in the range A2:A.
  • The step argument is optional. We set it to 1 because we want the dates to be increased by 1.

We should now compare this sequence to the range A2:A. Then, we can extract the mismatching values. Those will be the missing sequential dates in the list (range).

Filter Missing Sequential Dates Comparing Two Lists: formula_expression Part

The following FILTER formula (formula_expression) filters missing sequential dates by comparing two lists.

FILTER(seq,IFNA(XMATCH(seq,range))="")

Formula_Expression in Expanded Form (replaced seq with the corresponding formula and range with A2:A):

=FILTER(SEQUENCE(DAYS(MAX(A2:A),MIN(A2:A))+1,1,MIN(A2:A),1),IFNA(XMATCH(SEQUENCE(DAYS(MAX(A2:A),MIN(A2:A))+1,1,MIN(A2:A),1),A2:A))="")

Let’s explain this formula in more detail.

We have compared two lists in the formula. List 1 (seq) is the sequence of numbers generated by the SEQUENCE function in the previous step. List 2 (range) is the dates in the range A2:A.

For comparison, we use the XMATCH function.

Formula:

XMATCH(seq,range)

Syntax:

XMATCH(search_key, lookup_range, [match_mode], [search_mode])

In this formula, the search_key is the sequence of dates (seq) and the lookup_range is the dates in A2:A.

This will return a #N/A value if the date in the sequence is not found in the range A2:A.

We use the IFNA function to replace #N/A with a blank value.

IFNA(XMATCH(seq,range))

The FILTER formula filters the sequence of dates if the IFNA + XMATCH combination is equal to blank.

This way, we can find missing sequential dates in a list in Google Sheets.

The formula will also work with a list of numbers. Please try it yourself.

Formula to Find Missing Sequential Numbers in Google Sheets

Resources:

  1. How to Return Start and End Points from a List in Google Sheets.
  2. How to Fill Missing Dates in Google Sheets (Categorized & General)
Prashanth KV
Prashanth KV
Your Trusted Google Sheets and Excel Guide Prashanth KV brings a wealth of experience in Google Sheets and Excel, cultivated through years of work with multinational corporations in Mumbai and Dubai. As a recognized Google Product Expert in Docs Editors, Prashanth shares his expertise through insightful blogging since 2012. Explore his blog for practical tips and guidance on maximizing your spreadsheet skills.

Appointment Schedule Template in Google Sheets

An appointment schedule template in Google Sheets can assist you in efficiently managing your...

Creating Sequential Dates in Equally Merged Cells in Google Sheets

Do you know how to create sequential dates in equally merged cells across a...

Running Total By Month in Excel

This tutorial demonstrates how to calculate the running total by month in a range...

SORT and SORTBY – Excel Vs Google Sheets

While Excel offers the SORT and SORTBY functions for sorting a table, Google Sheets...

More like this

Appointment Schedule Template in Google Sheets

An appointment schedule template in Google Sheets can assist you in efficiently managing your...

Creating Sequential Dates in Equally Merged Cells in Google Sheets

Do you know how to create sequential dates in equally merged cells across a...

Interactive Random Task Assigner in Google Sheets

You have multiple tasks and multiple people. Here's a fun way to randomly assign...

14 COMMENTS

  1. Hi, Prashanth

    Can you help me with this? I tried following your method to a set of two columns with one column missing some dates.

    I am unable to sort it. I just want the column to appear blank where the dates are missing.

  2. Thank you. It all works. The only problem I have is my list of dates keeps growing, and I need to find the dates that are not included as the list grows. So my formula needs to include blanks where the dates will drop in. So in the example, you provided, I extended A11 to say A40 (where A12 to A40 are blanks anticipating date entry) but got an error. Can you help?

    • Hi, John,

      You can use MAX and MIN as below.

      Replace cell references/cell range as detailed below.

      Replace all A11 with max(A2:A), A2:A11 with A2:A, and A2 with min(A2:A)

      Example formula for cell range A2:A

      =Filter(sequence(max(A2:A)-min(A2:A)+1,1,min(A2:A),1),Regexmatch(to_text(to_date(sequence(max(A2:A)-min(A2:A)+1,1,min(A2:A),1))),textjoin("|",1,A2:A))=FALSE)

      In some cases, the formula won’t return the correct result. It may be matching issues due to date formatting.

      The preferred date formatting is dd/mm/yyyy or mm/dd/yyyy depending on your sheets settings.

      • Thank you, Prashanth, for this tutorial in the body of this post and also for the use of MAX and MIN for a set of entries that will grow.

  3. Hi,

    How can we use the formula in listing all working dates between two dates? (Mon-Fri are Network days).
    Also, is it possible to list the next 5 working dates from a Start Date?

    I appreciate the help!

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.