What is the method to find the most recent date in Google Sheets?

The method to find the most recent date in Google Sheets involves using the MAX function. This function allows users to find the highest value in a range of cells, which in this case would be the most recent date. By inputting the range of dates into the MAX function, the most recent date will be returned, making it an efficient and reliable method to find the latest date in a Google Sheets document. This method is useful for tracking and organizing data that is constantly being updated.

Find Most Recent Date in Google Sheets


You can use the following formulas in Google Sheets to find the most recent date in a specific range:

Method 1: Find Most Recent Date

=MAX(B2:B11)

This particular formula returns the most recent date in the range B2:B11.

Method 2: Find Most Recent Date Based on Criteria

=MAX(INDEX((F1=A2:A11)*B2:B11,))

This particular formula returns the most recent date in the range B2:B11 only for the cells where the corresponding value in the range A2:A11 is equal to the value in cell F1.

The following examples show how to use each method in practice with the following dataset in Google Sheets:

Example 1: Find Most Recent Date in Google Sheets

We can type the following formula into cell F1 to find the most recent date in column B of the dataset:

=MAX(B2:B11)

The following screenshot shows how to use this formula in practice:

Google Sheets most recent date

The formula returns 12/10/2023, which is the most recent date (i.e. “the latest date”) in this dataset.

Example 2: Find Most Recent Date Based on Criteria in Google Sheets

We can type the following formula into cell F2 to find the most recent date for the employee named “Bob” in the dataset:

=MAX(INDEX((F1=A2:A11)*B2:B11,))

The following screenshot shows how to use this formula in practice:

Google Sheets most recent date based on criteria

The formula returns 9/15/2023, which is the most recent date for the employee named “Bob” in the dataset.

Note: If this formula returns a numeric value then you should click cell F2, then click the Format tab along the top ribbon, then click Number, then click Date to format the numeric value as a date.

Additional Resources

The following tutorials explain how to perform other common tasks in Google Sheets:

x