#1   Report Post  
mick2
 
Posts: n/a
Default Finacial Year


Hi!
I have been working on this problem for ages;

Given that a Financial Year, spans two Calendar Years (from 1 July
through to 30 June inclusive), I am tyring to get Excel to
-cyclically-:

Display the number of calendar days remaining in a Financial
Year (beyond *Today()*).
Display the number of calendar days elapsed in a Financial Year (prior
to *Today()*).

Any suggestions?

Regards,
Mick.


--
mick2
------------------------------------------------------------------------
mick2's Profile: http://www.excelforum.com/member.php...o&userid=24143
View this thread: http://www.excelforum.com/showthread...hreadid=378027

  #2   Report Post  
mangesh_yadav
 
Posts: n/a
Default


Display the number of calendar days remaining in a Financial Year
(beyond Today()).

=DATE(YEAR(TODAY())-IF(MONTH(TODAY())6,1,0),7,0)-TODAY()



Display the number of calendar days elapsed in a Financial Year (prior
to Today()).

=TODAY()-DATE(YEAR(TODAY())-IF(MONTH(TODAY())<7,1,0),7,1)


Mangesh


--
mangesh_yadav
------------------------------------------------------------------------
mangesh_yadav's Profile: http://www.excelforum.com/member.php...o&userid=10470
View this thread: http://www.excelforum.com/showthread...hreadid=378027

  #3   Report Post  
Niek Otten
 
Posts: n/a
Default

=DATE(YEAR(TODAY())+IF(MONTH(TODAY())<7,0,1),7,1)-TODAY()
=TODAY()-DATE(YEAR(TODAY())-IF(MONTH(TODAY())<7,1,0),7,1)

--

Kind Regards,

Niek Otten

Microsoft MVP - Excel

"mick2" wrote in
message ...

Hi!
I have been working on this problem for ages;

Given that a Financial Year, spans two Calendar Years (from 1 July
through to 30 June inclusive), I am tyring to get Excel to
-cyclically-:

Display the number of calendar days remaining in a Financial
Year (beyond *Today()*).
Display the number of calendar days elapsed in a Financial Year (prior
to *Today()*).

Any suggestions?

Regards,
Mick.


--
mick2
------------------------------------------------------------------------
mick2's Profile:
http://www.excelforum.com/member.php...o&userid=24143
View this thread: http://www.excelforum.com/showthread...hreadid=378027



  #4   Report Post  
mick2
 
Posts: n/a
Default


"Thank you, Mangesh!"

Your formulae, are exactly what I was striving for; They are perfect!

Regards,
Mick.


--
mick2
------------------------------------------------------------------------
mick2's Profile: http://www.excelforum.com/member.php...o&userid=24143
View this thread: http://www.excelforum.com/showthread...hreadid=378027

  #5   Report Post  
JE McGimpsey
 
Posts: n/a
Default

One way:

days remaining:

=DATE(YEAR(DATE(YEAR(TODAY()),MONTH(TODAY())+6,1)) ,6,30)-TODAY()

days elapsed:

=TODAY()- DATE(YEAR(DATE(YEAR(TODAY()),MONTH(TODAY())-6,1)),6,30)


In article ,
mick2 wrote:

Hi!
I have been working on this problem for ages;

Given that a Financial Year, spans two Calendar Years (from 1 July
through to 30 June inclusive), I am tyring to get Excel to
-cyclically-:

Display the number of calendar days remaining in a Financial
Year (beyond *Today()*).
Display the number of calendar days elapsed in a Financial Year (prior
to *Today()*).

Any suggestions?

Regards,
Mick.



  #6   Report Post  
Dave Peterson
 
Posts: n/a
Default

You can get the last fiscal day of the current year with a formula like:

=DATE(YEAR(TODAY())+(MONTH(TODAY())6),7,0)

Use the year from today's date unless we're in July to December. It also uses
this: the 0th date of July is the last day of June.

Then you could just subtract that from Today().

=DATE(YEAR(TODAY())+(MONTH(TODAY())6),7,0) - TODAY()
(Format as General)

or maybe...
=DATE(YEAR(TODAY())+(MONTH(TODAY())6),7,1) - TODAY()

to get the number of days left.

Is there 1 or 0 days left on June 30th?

And to get the first day of the fiscal year, you can use this formula:

=DATE(YEAR(TODAY())-(MONTH(TODAY())<7),7,1)

Then just subtract the two values (and format as General).







mick2 wrote:

Hi!
I have been working on this problem for ages;

Given that a Financial Year, spans two Calendar Years (from 1 July
through to 30 June inclusive), I am tyring to get Excel to
-cyclically-:

Display the number of calendar days remaining in a Financial
Year (beyond *Today()*).
Display the number of calendar days elapsed in a Financial Year (prior
to *Today()*).

Any suggestions?

Regards,
Mick.

--
mick2
------------------------------------------------------------------------
mick2's Profile: http://www.excelforum.com/member.php...o&userid=24143
View this thread: http://www.excelforum.com/showthread...hreadid=378027


--

Dave Peterson
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
How to compare current year to prior year in bar chart? substring Charts and Charting in Excel 4 May 12th 05 07:04 PM
leap year question tiw Excel Discussion (Misc queries) 5 April 20th 05 07:49 PM
How do I sort for the maximum values in each year in excel? The Wrightster Excel Discussion (Misc queries) 3 February 24th 05 05:43 PM
Month Year Date Format Jamie Excel Worksheet Functions 2 February 7th 05 06:43 PM
Need totals of values that fall within a given year Pierre Excel Worksheet Functions 12 January 5th 05 04:45 PM


All times are GMT +1. The time now is 04:20 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"