Tricky Formula regarding Dates

Klement20

New Member
Joined
Jan 24, 2012
Messages
4
Hey guys,

I need serious help, I have been struggling for 2 days. This is my predicament.

I need a formula that will display "true" 40 to 0 before a specific date, it must display false for every other day of the year. So basically out of 365 days I need it to only display "true" for 40 days out of the year.

I'm using yyyy/dd/mm in my cells.

Basically I need to +1 to the persons age about 40 days before his birthday until the day of his birthday. (it's a insurance premium calculator.)

Please help, thanks so much!
 

Excel Facts

Repeat Last Command
Pressing F4 adds dollar signs when editing a formula. When not editing, F4 repeats last command.
Welcome to MrExcel.

This will return TRUE if the date in A1 is within 40 days of today's date:

=AND(A1<=TODAY(),A1>=TODAY()-40)
 
Upvote 0
Thanks so much Andrew.

Thanks so much I really appreciate it. I used the formula and it stays exactly the same. I assume it's because it also uses the year.

I need the exact same formula but excluding the year. I need to be able to use the formula for a person born in any year. I need it to return true within 40 days of the persons birthday so I hope it's possible to figure out a way to exclude the year and just work on months/days?

Is this possible?

Thank you are a star!
 
Last edited:
Upvote 0
Maybe try:

=AND(DATE(YEAR(TODAY()-40)+(MONTH(A1)<=MONTH(TODAY())),MONTH(A1),DAY(A1))<=TODAY(),DATE(YEAR(TODAY()-40)+(MONTH(A1)<=MONTH(TODAY())),MONTH(A1),DAY(A1))>=TODAY()-40)
 
Upvote 0

Forum statistics

Threads
1,214,948
Messages
6,122,420
Members
449,083
Latest member
Ava19

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top