I have the following formula set up to determine if someone's birthday is coming up within the next week.
=IF(AND(Q2>(TODAY()+4),Q2<(TODAY()+12)),"Yes","No")
*Note: Q2 is the person's birthday, but in the year 2016. (ie. 12/20/1978 is actually 12/20/2016)
This works, except for when I get to roughly the middle of December as the next week will spill over into next year. How can I get the range of next week to wrap around into January of the next year (ie. from December 2016 to January 2017)?
You can put the date in the current year with a formula like
To take into account that the date plus a few days can be in the next year, you can use
Your whole formula then looks like this:
Now the formula works for dates in the new year, too.