Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 347
Default Fiscal Year Week Number Calculation with a twist....

Good Day,

I've search for the solution to this including Cpearson's site but can't
figure this out..Our Fiscal year begins April 1st every year regardless of
the day of the week it falls on. So here's my delima, if it falls on any day
other than a Monday I need to be able to recognize a short week as week 1
ending on Sunday and week 2 beginning on the 1st Monday after and each week
following run Monday - Sunday.

Example for this year

Thurs,4-1-2010 thru Sun 4-4-2010 = Week 1
Mon,4-5-2010 thru Sunday,4-11-2010 = Week 2
and so on

Thank you in advance for taking time to look at my issue.
Respectfully,
George
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 5,934
Default Fiscal Year Week Number Calculation with a twist....

Can you clarify your question for us? I'm not sure what you want us to help
you with. Are you looking to put the date ranges in columns (if so, which
ones)? Or are you looking to know which week number a given date is in? Or
perhaps something else?

--
Rick (MVP - Excel)



"George" wrote in message
...
Good Day,

I've search for the solution to this including Cpearson's site but can't
figure this out..Our Fiscal year begins April 1st every year regardless of
the day of the week it falls on. So here's my delima, if it falls on any
day
other than a Monday I need to be able to recognize a short week as week 1
ending on Sunday and week 2 beginning on the 1st Monday after and each
week
following run Monday - Sunday.

Example for this year

Thurs,4-1-2010 thru Sun 4-4-2010 = Week 1
Mon,4-5-2010 thru Sunday,4-11-2010 = Week 2
and so on

Thank you in advance for taking time to look at my issue.
Respectfully,
George


  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 834
Default Fiscal Year Week Number Calculation with a twist....

Try this

=INT((H1-(DATE(2010,4,1)-WEEKDAY(DATE(2010,4,1),2)+1)+7)/7)

--

HTH

Bob

"George" wrote in message
...
Good Day,

I've search for the solution to this including Cpearson's site but can't
figure this out..Our Fiscal year begins April 1st every year regardless of
the day of the week it falls on. So here's my delima, if it falls on any
day
other than a Monday I need to be able to recognize a short week as week 1
ending on Sunday and week 2 beginning on the 1st Monday after and each
week
following run Monday - Sunday.

Example for this year

Thurs,4-1-2010 thru Sun 4-4-2010 = Week 1
Mon,4-5-2010 thru Sunday,4-11-2010 = Week 2
and so on

Thank you in advance for taking time to look at my issue.
Respectfully,
George



  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,180
Default Fiscal Year Week Number Calculation with a twist....

Excel 2007
Fiscal week
Ditto Bob
http://www.mediafire.com/file/htqz4g...03_30_10a.xlsx

  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 347
Default Fiscal Year Week Number Calculation with a twist....

Gary, Thank You .....Works Perfect..

"Gary Brown" wrote:

Assuming the 'Start' year is in Cell A1 and the date you want to check is in
A2...
=ROUNDUP(((A2-MOD(A2-2,7)-DATE($A$1,4,1))/7)+1,0)

So...
Cell A1 = 2010
Cell A2 = 04/01/2010
The formula above will return a '1'

--
Hope this helps.
If it does, please click the Yes button.
Thanks in advance for your feedback.
Gary Brown



"George" wrote:

Good Day,

I've search for the solution to this including Cpearson's site but can't
figure this out..Our Fiscal year begins April 1st every year regardless of
the day of the week it falls on. So here's my delima, if it falls on any day
other than a Monday I need to be able to recognize a short week as week 1
ending on Sunday and week 2 beginning on the 1st Monday after and each week
following run Monday - Sunday.

Example for this year

Thurs,4-1-2010 thru Sun 4-4-2010 = Week 1
Mon,4-5-2010 thru Sunday,4-11-2010 = Week 2
and so on

Thank you in advance for taking time to look at my issue.
Respectfully,
George



  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 5,934
Default Fiscal Year Week Number Calculation with a twist....

Hmm, I don't see any posting in this thread by "Gary Brown"... am I the only
one not seeing that response?

--
Rick (MVP - Excel)



"George" wrote in message
...
Gary, Thank You .....Works Perfect..

"Gary Brown" wrote:

Assuming the 'Start' year is in Cell A1 and the date you want to check is
in
A2...
=ROUNDUP(((A2-MOD(A2-2,7)-DATE($A$1,4,1))/7)+1,0)

So...
Cell A1 = 2010
Cell A2 = 04/01/2010
The formula above will return a '1'

--
Hope this helps.
If it does, please click the Yes button.
Thanks in advance for your feedback.
Gary Brown



"George" wrote:

Good Day,

I've search for the solution to this including Cpearson's site but
can't
figure this out..Our Fiscal year begins April 1st every year regardless
of
the day of the week it falls on. So here's my delima, if it falls on
any day
other than a Monday I need to be able to recognize a short week as week
1
ending on Sunday and week 2 beginning on the 1st Monday after and each
week
following run Monday - Sunday.

Example for this year

Thurs,4-1-2010 thru Sun 4-4-2010 = Week 1
Mon,4-5-2010 thru Sunday,4-11-2010 = Week 2
and so on

Thank you in advance for taking time to look at my issue.
Respectfully,
George


  #7   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 834
Default Fiscal Year Week Number Calculation with a twist....

Nope, I don't see it either. This seems to happen a lot, I often see a guy
thanking a response when I gave the self same response hours earlier. It
seems to be something to do with the Microsoft web forum.

--

HTH

Bob

"Rick Rothstein" wrote in message
...
Hmm, I don't see any posting in this thread by "Gary Brown"... am I the
only one not seeing that response?

--
Rick (MVP - Excel)



"George" wrote in message
...
Gary, Thank You .....Works Perfect..

"Gary Brown" wrote:

Assuming the 'Start' year is in Cell A1 and the date you want to check
is in
A2...
=ROUNDUP(((A2-MOD(A2-2,7)-DATE($A$1,4,1))/7)+1,0)

So...
Cell A1 = 2010
Cell A2 = 04/01/2010
The formula above will return a '1'

--
Hope this helps.
If it does, please click the Yes button.
Thanks in advance for your feedback.
Gary Brown



"George" wrote:

Good Day,

I've search for the solution to this including Cpearson's site but
can't
figure this out..Our Fiscal year begins April 1st every year
regardless of
the day of the week it falls on. So here's my delima, if it falls on
any day
other than a Monday I need to be able to recognize a short week as
week 1
ending on Sunday and week 2 beginning on the 1st Monday after and each
week
following run Monday - Sunday.

Example for this year

Thurs,4-1-2010 thru Sun 4-4-2010 = Week 1
Mon,4-5-2010 thru Sunday,4-11-2010 = Week 2
and so on

Thank you in advance for taking time to look at my issue.
Respectfully,
George




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
fiscal year calculation ml Excel Discussion (Misc queries) 3 February 19th 10 04:50 PM
mmb- fiscal year calculation-- mmb Excel Worksheet Functions 2 November 5th 09 11:48 PM
Week Number - Fiscal Year Sarah Excel Worksheet Functions 1 August 18th 09 12:37 AM
How to get month number for fiscal year starting in Oct. Tim Excel Worksheet Functions 3 October 13th 08 05:08 PM
Fiscal Year Calculation DaGo21 Excel Worksheet Functions 13 February 7th 06 10:16 AM


All times are GMT +1. The time now is 05:16 AM.

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

About Us

"It's about Microsoft Excel"