
=ROUNDUP(MONTH(date)/3,0)
Related formulas
Get fiscal quarter from date
If you want to calculate the quarter (i.e. 1,2,3,4) from a date, you can use the ROUNDUP function together with MONTH.
In the example shown, the formula in cell C5 is:
=ROUNDUP(MONTH(B5)/3,0)
In this case, the formula first extracts the month as a number between 1-12, then pides this number by 3. The result is then rounded up to the nearest whole number using the ROUNDUP function.
The ROUNDUP function works like the ROUND function, except that ROUNDUP will always round numbers 1-9 upwards to a given number of digits.
If you want the quarter number to include a "Q" you can concatenate. The formula in D5 is:
="Q"&ROUNDUP(MONTH(B5)/3,0)
The result is the letter "Q" prepended to the quarter number:

=ROUNDUP(MONTH(date)/3,0)
Related formulas
Get fiscal quarter from date
If you want to calculate the quarter (i.e. 1,2,3,4) from a date, you can use the ROUNDUP function together with MONTH.
In the example shown, the formula in cell C5 is:
=ROUNDUP(MONTH(B5)/3,0)
In this case, the formula first extracts the month as a number between 1-12, then pides this number by 3. The result is then rounded up to the nearest whole number using the ROUNDUP function.
The ROUNDUP function works like the ROUND function, except that ROUNDUP will always round numbers 1-9 upwards to a given number of digits.
If you want the quarter number to include a "Q" you can concatenate. The formula in D5 is:
="Q"&ROUNDUP(MONTH(B5)/3,0)
The result is the letter "Q" prepended to the quarter number: