Forum Discussion
Rome707
May 03, 2023Copper Contributor
Auto Populating Fiscal Year in a Cell Based on a Date Entered in Another Cell
Hi everyone. I’m working on a database and am trying to figure out how to make a cell auto populate with a fiscal year (ie 2022/2023) based on a date that’s entered in the preceding cell. The date th...
- May 03, 2023
Let's say you enter a date in A1.
The fiscal year is returned by the formula
=YEAR(EDATE(A1,-6))&"/"&YEAR(EDATE(A1,6))
HansVogelaar
May 03, 2023MVP
Let's say you enter a date in A1.
The fiscal year is returned by the formula
=YEAR(EDATE(A1,-6))&"/"&YEAR(EDATE(A1,6))
mathetes
May 03, 2023Silver Contributor
Nice job. Cleaner, shorter than mine.
- HansVogelaarMay 03, 2023MVP
Thanks, John!