Fórmula de Excel: Últimos n días -

Tabla de contenido

Fórmula genérica

=AND(A1>=(TODAY()-n),A1

Summary

To check if a date is within the last n days of today's date, you can use a formula based on the TODAY and AND functions. In the example shown, we are checking for dates in the last 7 days. The formula in D5, copied down, is:

=AND(B5>=(TODAY()-7),B5

You can use a formula like this for conditional formatting, or to filter data in a Pivot Table.

Explanation

In the image shown, the current date is August 19, 2019.

Excel dates are serial numbers, so you can manipulate them with simple math operations. The TODAY function always returns the current date. Inside the AND function, the first logical test checks to see if the date in B5 is greater than or equal to today's date minus 7 days:

=B5>=(TODAY()-7)

The second logical test checks if the date is less than today:


B5

when both results are TRUE, the AND function will return TRUE. If either result is FALSE, the AND function will return FALSE.

Without future checks

The second test is meant to exclude any dates greater than (or equal to) today. This test only makes sense if data may include dates in the future, for example forecasts or estimates. If there are no future dates, or if you want future dates included, the formula can be simplified to:


=B5>=(TODAY()-7)

Return custom value

This formula can be combined with the IF function to return any value you want. For example, to return "Last 7" when a date is within last 7 days, and nothing if not, you can use:


=IF(AND(B5>=(TODAY()-7),B5

Articulos interesantes...