recurring day of a month

ThedoreHolley

New Member
Joined
Sep 26, 2016
Messages
49
Office Version
  1. 365
Platform
  1. Windows
I'm trying to figure a formula that changes the date based of the month. I.e. I'm Using the today formula and need specific column to be the 25th of each month. So today is the 11th and the event is happening on the 25th. can I have a formula that changes as today changes.
 

Excel Facts

Convert text numbers to real numbers
Select a column containing text numbers. Press Alt+D E F to quickly convert text to numbers. Faster than "Convert to Number"
Do you just want the 25th day of whatever the current month is?
If so, then try:
Code:
=DATE(YEAR(TODAY()),MONTH(TODAY()),25)
 
Upvote 0
You can also calculate the 25th of the current month this way...

=TODAY()-DAY(TODAY())+25
 
Upvote 0
For the last Tuesday of the current month, try

=EOMONTH(TODAY(),0)-WEEKDAY(EOMONTH(TODAY(),0),2)+2
 
Upvote 0
For the last Tuesday of the current month, try

=EOMONTH(TODAY(),0)-WEEKDAY(EOMONTH(TODAY(),0),2)+2
I think this formula will not work correctly all the time. I think if the "today" date were any date in February 2016, it will return a date in March as the last Tuesday.
 
Upvote 0
Rick,

Thank you for catching this. Actually, that formula errs whenever the 1st of the next month is a Tuesday.

Here is a new formula, with fewer function calls:

=WORKDAY.INTL(EOMONTH(TODAY(),0)+1,-1,"1011111")
 
Upvote 0

Forum statistics

Threads
1,214,992
Messages
6,122,631
Members
449,095
Latest member
bsb1122

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