Academic Year calculator

S

sedonovan

Hi all,
I wonder if you could help?

I'm looking for a way of working this out in Excel

if todays date is, or before, 31/08/YYXX - the Year Displayed should be
YYXX-1/XX

eg. if its
3rd october 2004 - it should display 2004/05
3rd July 2005 - it should display 2004/05


if todays date is, or later than, 01/09/YYXX - the year displayed
should be YYXX/XX+1

eg if its

3rd september 2005 - it should display 2005/06
3 january 2006 - it should display 2005/06.

Any ideas?? :confused:
Thanks
 
D

David Biddulph

sedonovan said:
Hi all,
I wonder if you could help?

I'm looking for a way of working this out in Excel

if todays date is, or before, 31/08/YYXX - the Year Displayed should be
YYXX-1/XX

eg. if its
3rd october 2004 - it should display 2004/05
3rd July 2005 - it should display 2004/05


if todays date is, or later than, 01/09/YYXX - the year displayed
should be YYXX/XX+1

eg if its

3rd september 2005 - it should display 2005/06
3 january 2006 - it should display 2005/06.

Any ideas?? :confused:

=IF(MONTH(TODAY())<9,YEAR(TODAY())-1&"/"&RIGHT(YEAR(TODAY()),2),YEAR(TODAY())&"/"&RIGHT(YEAR(TODAY())+1,2))
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top