Divide Month Into Four Equal Parts

wsnyder

Board Regular
Joined
Sep 23, 2018
Messages
223
Office Version
  1. 365
Platform
  1. Windows
Hi all,

Using Excel 2016.

How can I divide any given months into 4 equal parts so I can determine if a task was complete in part1, part2, part3 or part4?
I tried dividing 3/31/2019 into 4 equal parts of 7.75 hours each, but I don't like the way this is heading.
There has to be an easier way that is flexible to handle 28, 29, 30, or 31 depending on the month and year.

thanks,
-lou
 

Excel Facts

Quick Sum
Select a range of cells. The total appears in bottom right of Excel screen. Right-click total to add Max, Min, Count, Average.
How can I divide any given months into 4 equal parts so I can determine if a task was complete in part1, part2, part3 or part4?
I tried dividing 3/31/2019 into 4 equal parts of 7.75 hours each, but I don't like the way this is heading.
There has to be an easier way that is flexible to handle 28, 29, 30, or 31 depending on the month and year.
Give us an example... what would the four equal parts of March 2019 look like?
 
Upvote 0
Will this help? The formula used for January was copied down thru December
Code:
=((EOMONTH(A2,0) - A2) + 1) / 4
Date¼Month in days
1/1/20197.75
2/1/20197.00
3/1/20197.75
4/1/20197.50
5/1/20197.75
6/1/20197.50
7/1/20197.75
8/1/20197.75
9/1/20197.50
10/1/20197.75
11/1/20197.50
12/1/20197.75

<tbody>
</tbody>
 
Upvote 0
Thanks Rick,


In the example of March, 2019 (31/4 = 7.75 days in each part)


Part 1 : 3/1, 3/2, 3/3, 3/4, 3/5, 3/6, 3/7, 3/8 up to 6pm
Part 2 : 3/8 18:00:01, 3/9, 3/10, 3/11, 3/12, 3/13, 3/14, 3/15, 3/16 up to 12pm
Part 3 : 3/16 12:00:01, 3/17, 3/18, 3/19, 3/20, 3/21, 3/22, 3/23, 3/24 up to 6am
Part 4 : 3/24 06:00:01, 3/25, 3/26, 3/27, 3/28, 3/29, 3/30, 3/31

thanks,
-lou
 
Upvote 0
Here's the break out for 12 months:
Date¼Month in daysStart Part1Start Part2Start Part3Start Part4End Part4
January7.751/1/19 0:001/8/19 18:001/16/19 12:001/24/19 6:001/31/19 23:59
February72/1/19 0:002/8/19 0:002/15/19 0:002/22/19 0:002/28/19 23:59
March7.753/1/19 0:003/8/19 18:003/16/19 12:003/24/19 6:003/31/19 23:59
April7.54/1/19 0:004/8/19 12:004/16/19 0:004/23/19 12:004/30/19 23:59
May7.755/1/19 0:005/8/19 18:005/16/19 12:005/24/19 6:005/31/19 23:59
June7.56/1/19 0:006/8/19 12:006/16/19 0:006/23/19 12:006/30/19 23:59
July7.757/1/19 0:007/8/19 18:007/16/19 12:007/24/19 6:007/31/19 23:59
August7.758/1/19 0:008/8/19 18:008/16/19 12:008/24/19 6:008/31/19 23:59
September7.59/1/19 0:009/8/19 12:009/16/19 0:009/23/19 12:009/30/19 23:59
October7.7510/1/19 0:0010/8/19 18:0010/16/19 12:0010/24/19 6:0010/31/19 23:59
November7.511/1/19 0:0011/8/19 12:0011/16/19 0:0011/23/19 12:0011/30/19 23:59
December7.7512/1/19 0:0012/8/19 18:0012/16/19 12:0012/24/19 6:0012/31/19 23:59

<tbody>
</tbody>
Column A (Month) is the first day of the month (formatted mmmm)
B2:
Code:
[COLOR=#574123]=((EOMONTH(A2,0) - A2) + 1) / 4[/COLOR]
C2:
Code:
=A2
D2:
Code:
=A2 + B2
E2:
Code:
=A2 + (B2 *2)
F2:
Code:
=A2 + (B2 *3)
G2:
Code:
=EOMONTH(A2,0) +0.9993
 
Upvote 0
Thanks GR00007,

Your solution is much better than the direction I was heading - thanks.
A small issue to resolve is February with 29 days in a leap year.

Thanks,
-lou
 
Upvote 0

Forum statistics

Threads
1,215,647
Messages
6,126,005
Members
449,279
Latest member
Faraz5023

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