Date & Quarters

raheem

New Member
Joined
Apr 24, 2017
Messages
34
Hi,

I need a simple formula to get the quarter number from date. In below table, if column A is already date, it should mention the quarter in column B. But if column A is already quarter, it should simply equal in column B. Changing date format is not an option. I tried to create a formula with IF+MONTH+SWITCH etc. but it becomes too complex to understand for other users.

AB
01.01.2018Q1
05.02.2018Q1
10.03.2019Q1
03.04.2019Q2
31.05.2018Q2
Q2Q2
Q2Q2
Q3Q3
Q3Q3
Q4Q4
Q4Q4

<colgroup><col><col></colgroup><tbody>
</tbody>
 

Excel Facts

Create a chart in one keystroke
Select the data and press Alt+F1 to insert a default chart. You can change the default chart to any chart type
Hi, you could try:

=IF(ISNUMBER(A2),"Q"&ROUNDUP(MONTH(A2)/3,0),A2)
 
Upvote 0
Hi, you could try:

=IF(ISNUMBER(A2),"Q"&ROUNDUP(MONTH(A2)/3,0),A2)

Doesn't work. Probably because ISNUMBER returns FALSE as the input is having two dots (01.01.2018 not recognized as number)
Also, there is no standard date format in A2, so how can MONTH(A2) identify a month out of A2.
 
Last edited:
Upvote 0
Doesn't work. Probably because ISNUMBER returns FALSE

Hi, it wasn't clear that your dates were text and not real excel date serial numbers.

I would probably advise converting your text dates to real dates - but here is an alternative you can try.

=IF(LEFT(A2)="Q",A2,"Q"&ROUNDUP(MID(A2,4,2)/3,0))
 
Last edited:
Upvote 0
As I said in start, changing format is not an option. But the alternative is also fine.

Thanks
 
Upvote 0
Hi, it wasn't clear that your dates were text and not real excel date serial numbers.

I would probably advise converting your text dates to real dates - but here is an alternative you can try.

=IF(LEFT(A2)="Q",A2,"Q"&ROUNDUP(MID(A2,4,2)/3,0))

As I said in start, changing format is not an option. But the alternative is also fine.

Thanks
 
Upvote 0
FormR was not asking you to change the format. He was asking you to supply dates as real dates, not text looking like dates.
If they were real dates, they could still look like 10.01.2019, then ISNUMBER would work.
 
Upvote 0
Hi, I am using this formula ="Q" & ROUNDUP(MONTH(A2)/3,0) & " "&year(A2). However some of the cells in A2 are blank and the value Q1 1900 is returned instead of blank. I have tried to add IFERROR but is till returning Q1 1900.

ABB
1DatesQuartersExpected result
2Q1 1900Blank
330/09/2019Q3 2019Q3 2019

<tbody>
</tbody>


I would really appreciate any help with this issue
 
Upvote 0
Hi, I am using this formula ="Q" & ROUNDUP(MONTH(A2)/3,0) & " "&year(A2). However some of the cells in A2 are blank and the value Q1 1900 is returned instead of blank. I have tried to add IFERROR but is till returning Q1 1900.

I would really appreciate any help with this issue

How about this

=IF(ISBLANK(A2),"","Q"&ROUNDUP(MONTH(A2)/3,0)&" "&YEAR(A2))
 
Upvote 0

Forum statistics

Threads
1,213,494
Messages
6,113,988
Members
448,538
Latest member
alex78

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