Calculating a Fiscal Week

Eaglboy1

New Member
Joined
Apr 19, 2016
Messages
20
Hey guys,

I'm trying to come up with a formula that will calculate the fiscal week based on today's date, but I'm having a hard time with it because my company uses a strange fiscal start date. Our fiscal year starts on the Sunday before the first Wednesday that falls in February. For example, fiscal week 1 for 2016 started on 1/31/2016, 2017 starts on 1/29/17, and 2018 starts on 1/28/2018. Any ideas on how I could make this work or is it a lost cause?

Thanks in advance for your help!
 
Hey, as long as you're willing to post the formula that I can copy and paste into my Excel spreadsheet, I don't care how long winded it is. ;-)
 
Upvote 0

Excel Facts

How to total the visible cells?
From the first blank cell below a filtered data set, press Alt+=. Instead of SUM, you will get SUBTOTAL(9,)
Try this:
Code:
=1+INT((TODAY()-IF(DATE(YEAR(TODAY()),2,1)-WEEKDAY(DATE(YEAR(TODAY()),2,1),1)+1<=TODAY(),DATE(YEAR(TODAY()),2,1)-WEEKDAY(DATE(YEAR(TODAY()),2,1),1)+1,DATE(YEAR(TODAY())-1,2,1)-WEEKDAY(DATE(YEAR(TODAY())-1,2,1),1)+1))/7)

or place =TODAY() in cell A1 and try a shorter version:
Code:
=1+INT((A1-IF(DATE(YEAR(A1),2,1)-WEEKDAY(DATE(YEAR(A1),2,1),1)+1<=A1,DATE(YEAR(A1),2,1)-WEEKDAY(DATE(YEAR(A1),2,1),1)+1,DATE(YEAR(A1)-1,2,1)-WEEKDAY(DATE(YEAR(A1)-1,2,1),1)+1))/7)
 
Last edited:
Upvote 0

Forum statistics

Threads
1,223,227
Messages
6,170,848
Members
452,361
Latest member
d3ad3y3

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