Formulas of first and last day of each quarterly month.

KyleJackMorrison

Board Regular
Joined
Dec 3, 2013
Messages
107
Office Version
  1. 365
  2. 2021
  3. 2019
Platform
  1. Windows
Hello,

I'm struggling to find a formula that will show the First and Last date of each quarterly month. Basically need to have these dates but for the current year so the year will change if its 2020...

First Quarter:
01/01/2019
31/03/2019
Second Quarter
01/04/2019
30/06/2019
Third Quarter
01/07/2019
30/09/2019
Forth Quarter
01/10/2019
31/10/2019

Thanks in advance.
Kyle
 

Excel Facts

Enter current date or time
Ctrl+: enters current time. Ctrl+; enters current date. Use Ctrl+: Ctrl+; Enter for current date & time.
Use the EOMONTH formula
=EOMONTH(DATE(YEAR(NOW()),3,1),0) to get the last day in march for the current year
=DATE(YEAR(NOW()),1,1) to get the first day in january of the current year
 
Upvote 0
Hi,

In cell A2, just input 1st January
In cell A3 =EOMONTH(DATE(YEAR(A2),ROW(),1),0)

In cell A5 =EDATE(A2,3)
In cell A6 =EOMONTH(DATE(YEAR(A5),ROW(),1),0)

and so on

Hope this will help
 
Upvote 0
You would have to get tricky with the last day in December by adding 1 to the year and using: =DATE(YEAR(NOW())+1,1,0)

Not intuitive for me. But I didn't know that, so thank you.
 
Upvote 0
WUT! Was that always there? I guess I remember a couple years (maybe longer) ago seeing EOMONTH coming into play and wishing it had always been.
 
Upvote 0
OP has the Last day of the Quarter exactly on the Row() number ...
 
Upvote 0

Forum statistics

Threads
1,214,932
Messages
6,122,332
Members
449,077
Latest member
jmsotelo

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