HomeGoogle DocsSpreadsheetHow to Hardcode DATETIME Criteria within FILTER Function in Google Sheets

How to Hardcode DATETIME Criteria within FILTER Function in Google Sheets

Published on

This tutorial explains how to properly hardcode DATETIME criteria within the FILTER function in Google Sheets.

The DATETIME (TIMESTAMP) values contain both date and time parts.

You can format it in several ways in Google Sheets using Format > Number > Custom date and time menu command.

Does that affect filtering?

I’ll come to that as it requires some explanation.

Some Google Sheets functions, such as the COUNTIF, accept DATETIME criteria as a string, for example, =countif(A2:A,">=16/01/2022 15:30").

In such a case, you must take care of the date formatting.

Enter =now() in cell A1 in a new tab in your current Sheet and follows that date format in the formula in that Sheet.

It can either be DD/MM/YY (Day-Month-Year) or MM/DD/YY (Month-Day-Year) format. You must adhere to that.

At present, the TIMESTAMP criterion as above doesn’t seem to work in the FILTER function in Google Sheets.

You require to additionally (virtually) format the range (array) also to the text.

Example:

=filter(A2:B, text(A2:A,"dd/mm/yyy hh:mm:ss")>"15/01/2022 15:30:00")

It may work! But when you want to hardcode DATETIME criteria within the FILTER function in Google Sheets, I recommend a different approach. Let’s go to that.

Sample Data (Employee Attendance)

Assume you have installed a fingerprint punching machine for employee attendance in your office/workplace.

What about finding the latecomers using the output (biometric time logs)?

Here is the attendance of six employees on two consecutive days.

Time LogsEmployee Names
15/1/2022 10:30Sara
15/1/2022 09:55Kristy
15/1/2022 10:00Ben
15/1/2022 10:11Ronnie
15/1/2022 09:45Karen
15/1/2022 09:59Tonya
16/1/2022 10:06Sara
16/1/2022 09:56Kristy
16/1/2022 09:58Ben
16/1/2022 10:00Ronnie
16/1/2022 10:01Karen
16/1/2022 10:05Tonya

Copy-paste the above attendance data in cell range A1:B13.

Before proceeding to the DATETIME FILTER formula, you may check whether the dates are correctly formatted in your Sheet. How?

  1. Insert =day(A2) in any blank cell and check whether the returned number (day) is 15.
  2. If not, enter =now() in another cell. Follow that output format to enter the ‘Time Logs’ manually in A2:A13.

Proper Way to Hardcode DATETIME Criteria within the FILTER Function in Google Sheets

Please scroll up and see one filter formula.

You can see that I have used there the TEXT function to virtually convert the data in the range A2:A to text/string and have used a TIMESTAMP text as the criterion/condition.

Here we won’t convert the range A2:A to string. Instead, we will use the date and time parts separately as the criterion.

Here is that formula.

FORMULA # 1

=filter(A2:B, A2:A>date(2022,1,15)+time(15,30,0))

See how I have hardcoded the DATETIME criterion, i.e., replacing text(A2:A,"dd/mm/yyy hh:mm:ss")>"15/01/2022 15:30:00" within this FILTER formula.

The above formula will filter the table if the TIMESTAMP in A2:A is greater than 15/01/2022 15:30:00.

The above explains the usage of DATETIME criteria within the FILTER function in Google Sheets.

Now we will apply the same in a few real-life scenarios.

Filter Latecomers Using Hardcoded DATETIME Criteria within the FILTER Function

Assume our office working time starts from 10:00 AM, and I want to find those punched after 10:05 AM on a particular day, i.e., on 15/01/2022.

Here we require to find the employees who have punched after 15/01/2022 at 10:05 AM and before 16/01/2022.

That means we require to use either the comparison operators or the ISBETWEEN function with the criteria.

I’ve already explained the use of ISBETWEEN within the FILTER function in Google Sheets.

Here let’s see how to use DATETIME criteria within ISBETWEEN and thus within the FILTER function in Google Sheets.

FORMULA # 2

=filter(A2:B, isbetween(A2:A,date(2022,1,15)+time(10,5,0),date(2022,1,16),false,false))
Example to DATETIME Criteria within FILTER Function in Google Sheets

You may please check the time logs and names returned by the formula.

If you don’t like the ISBETWEEN, even though there is no such chance, you can try the below formula.

=filter(A2:B, A2:A>date(2022,1,15)+time(10,5,0),A2:A<date(2022,1,16))

I want to exclude the date part. I mean, what about finding the latecomers in the range irrespective of the date?

FORMULA # 3

=filter(A2:B, mod(A2:A,1)>time(10,5,0))

This FILTER formula will return the list of employees who are late on 15/01/2022 and 16/01/2022.

The MOD function in the formula removes the date and just returns the time part.

Conclusion

The easiest way to use TIMESTAMP criteria is by entering them in cells and referring to them in the formula.

The above method is just for those who wish to hardcode the TIMESTAMP criteria within the FILTER function.

Here are some related resources.

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.

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...

Get Top N Values Using Excel’s FILTER Function

When using the FILTER function in Excel to extract the top N values, it's...

More like this

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...

Google Sheets Bar and Column Chart with Target Coloring

To color each data point in the column or bar chart according to the...

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.