Auto changing date in cell based on today’s date

Allthingsezell

New Member
Joined
Mar 14, 2025
Messages
1
Office Version
  1. 2021
Platform
  1. MacOS
I have a table full of my personal and business expenses. One column I have is “due date”. Like most bills, they are due on the same date each month.

I would like for excel to change the due date to the next monthes dues date based on whether that date has passed or not. For example: My power bill is due on 01/01/2025 and today’s date is 01/02/2025. I would like for excel to see that the power bill due date has passed and to change to next month, which would be 02/01/2025. How would I go about doing this?
 
how about
=IF(TODAY()>DATE(YEAR(TODAY()),MONTH(TODAY()),1),DATE(YEAR(TODAY()),MONTH(TODAY())+1,1),DATE(YEAR(TODAY()),MONTH(TODAY()),1))

Not sure that will work , now looked at, as it will only be false on the 1st of the month

Book3
A
1
24/1/25
3
Sheet1
Cell Formulas
RangeFormula
A2A2=IF(TODAY()>DATE(YEAR(TODAY()),MONTH(TODAY()),1),DATE(YEAR(TODAY()),MONTH(TODAY())+1,1),DATE(YEAR(TODAY()),MONTH(TODAY()),1))
 
Upvote 0

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