Quarter Start and End date for a Broadcast Calendar

pavan5

Board Regular
Joined
Jun 13, 2017
Messages
56
I work in entertainment and media field and here there is something called Broad Cast Calendar which is very different from ISO standard calendar.
Here they make changes to calendar such that every month has almost same number of weeks and every week starts with a Monday and ends on Sunday.


I am trying to find out Quarter start and end date given any date in A2 column.


In broad cast calendar the quarter starts on 1st of October, if 1st of October falls on a weekend, the prior monday is picked as a First day of the quarter


Week start is always monday and end is sunday


for example:
October 1 2016 fall on Saturday, so the quarter for 2017 starts on September 26th 2016 and ends on September 24th 2017
October 1 2017 falls on Sunday, so the quarter for 2018 starts on September 25th 2017 and ends on September 30 2018.


can we put a formula for this?
 
If you already have a formula giving the quarter start date....

A2 = Any Given Date
B2 = Formula giving Qarter Starting Date based on A2

try
Week#: =CEILING((A2-B2+1)/7,1)

not working W1 for Q1 of 2017 should start from Sept 26 2016 to Oct 2nd 2016
 
Upvote 0

Excel Facts

Using Function Arguments with nested formulas
If writing INDEX in Func. Arguments, type MATCH(. Use the mouse to click inside MATCH in the formula bar. Dialog switches to MATCH.
I thought it was just the week number relative to the quarter, not the whole year...

You then need B2 to be the starting date of Q1 for that year.
 
Upvote 0
Put in a date that you know will be in the first quarter of the year, say December 1st.
Use the previous formula that gives the 1st day of the quarter for that date.
Use that cell in place of B2 in this formula
=CEILING((A2-B2+1)/7,1)
 
Upvote 0
Put in a date that you know will be in the first quarter of the year, say December 1st.
Use the previous formula that gives the 1st day of the quarter for that date.
Use that cell in place of B2 in this formula
=CEILING((A2-B2+1)/7,1)

when I do this the excel is considering the week start day as Sunday , I need the week start day as Monday
 
Upvote 0
It's considering whatever day is in B2 as the starting day of the week.

how can we calculate week number for the year ?

also how do I calculate the year ?

the start of the broad cast year is from Oct 1st if its not a Monday, it would start from previous month Monday in this case Sept 26th 2016
 
Last edited:
Upvote 0
You already have the formulas you need to calculate the year.

You have a formula to find the first day of a quareter based on a given date.
So pick a date that you know will always be in the First Quarter of your year.
Surely December 1st will always be in the first quarter of your year.
So the previous formula given that returns the first day of the quarter for December 1st, therefore is the first day of the year.

You have a formula to find the last day of a quarter based on a given date.
So pick a date that you know will always be in the Last quarter of the year
Surely September 1st will always be in the last quarter of your year
So the previous formula given that returns the last day of the quarter based on September 1st, therefore is the last day of the year.
 
Upvote 0
You already have the formulas you need to calculate the year.

You have a formula to find the first day of a quareter based on a given date.
So pick a date that you know will always be in the First Quarter of your year.
Surely December 1st will always be in the first quarter of your year.
So the previous formula given that returns the first day of the quarter for December 1st, therefore is the first day of the year.

You have a formula to find the last day of a quarter based on a given date.
So pick a date that you know will always be in the Last quarter of the year
Surely September 1st will always be in the last quarter of your year
So the previous formula given that returns the last day of the quarter based on September 1st, therefore is the last day of the year.

Thanks Jonmo1 !! I'm sorry am very very bad at excel, could you help me in getting the formula for this, please.
 
Upvote 0
Using Tetra's formulas (he was right, mine weren't quite right)

Enter a year in a2
I made formulas in A4 and B4 to create December 1st of previous year, and September 1st of that year.
Because we KNOW December 1st is within the first quarter, and september 1st is in the last quarter, regardless if they are monday or not.

I then used Tetra's formulas to get the first day of first quarter, and last day of last quarter. = Year.


Unknown
AB
1Year
22017
3Known day of 1st quarterKnown day of 4th quarter
4Thursday, December 01, 2016Friday, September 01, 2017
5
61st day of 1st quarterlast day of 4th quarter
7Monday, September 26, 2016Sunday, September 24, 2017
Sheet1
Cell Formulas
RangeFormula
A4=DATE(A2-1,12,1)
A7=WORKDAY.INTL(DATE(YEAR(A4+7-WEEKDAY(A4,2)),CEILING(MONTH(A4+7-WEEKDAY(A4,2)),3)-2,2),-1,"0111111")
B4=DATE(A2,9,1)
B7=WORKDAY.INTL(DATE(YEAR(B4+7-WEEKDAY(B4,2)),CEILING(MONTH(B4+7-WEEKDAY(B4,2)),3)+1,1),-1,"1111110")
 
Upvote 0

Forum statistics

Threads
1,223,230
Messages
6,170,883
Members
452,364
Latest member
springate

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