Formula to update a fixed date to current year.

Excellent022

New Member
Joined
May 15, 2020
Messages
12
Office Version
  1. 365
Platform
  1. Windows
I am developing a basic timeline with activities that should happen on fixed dates within the fiscal year. I'd like this spreadsheet to automatically update these dates based on the current year so that it can be used ongoing. So for example, in 2035 these activities will still be due 8/1, 9/1, etc. but the year should read 2035.

Current Year
2022​
Task NumberTask NameDurationStart Date of RFP ActivityFormula ColumnEnd Date of RFP ActivityFormula Column
RFP Period
Kickoff Meeting107/01/23
RFP Requirements Development7d08/01/2308/09/23
RFP Drafting14d08/10/2308/29/23
RFP Internal Program Clearance3d08/30/2309/01/23
 

Excel Facts

Get help while writing formula
Click the italics "fx" icon to the left of the formula bar to open the Functions Arguments dialog. Help is displayed for each argument.
You could do something like this:
Excel Formula:
=DATE(YEAR(TODAY()),8,1)
and that will always return 8/1 of the current year, whatever year you may be in.

Or if you want to pull it from a cell (like B2), then just use:
Excel Formula:
=DATE(B2,8,1)
 
Upvote 0
Solution
You could do something like this:
Excel Formula:
=DATE(YEAR(TODAY()),8,1)
and that will always return 8/1 of the current year, whatever year you may be in.

Or if you want to pull it from a cell (like B2), then just use:
Excel Formula:
=DATE(B2,8,1)
Both work. Thanks so much!
 
Upvote 0
You are welcome!
Glad I was able to help.
 
Upvote 0

Forum statistics

Threads
1,216,085
Messages
6,128,733
Members
449,465
Latest member
TAKLAM

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