Determining Quarter from a date in Excel
Excel is a great program to manipulate your data, perform what-ifs, and graphically display results. But it's not straight forward when you want to know the which Quarter certain activity took place. Fortunately, with a simple formula you can determine the Quarter.
Roundup can be a useful function in other applications as well. The last parameter (0 in this example) is used to change the rounding level. A positive number will add decimal places, while a negative number will round left of the decimal (i.e. -1 rounds to 10s and -2 rounds to 100s).
=ROUNDUP(MONTH(A1)/3,0)
![](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjs80mhc_WBRYBWPeK-RI2Tv86EEh0aBeX4-mh1IufJeH-2lr70_VAbdBi89rVk_yr6RHrhEwWnmkt-_4U-24gP2zHmpJfZGdIB8GLdM8rIrXmH8KU9FqZH7E40mLxU8PZapUp_/s400/roundup.png)
Comments
I just wonder why Excel 2007 does not have a function to do this.