If you have your data with each month of data arranged in rows like so:
start by creating quarterly sums in the adjacent columns, D & E in our example.
Start with the third row in the new column or the first quarter you want to create, in this example we'll use March 31st (2000-03-31). Use the summation function over the prior two months and the quarter month, for March use:
=SUM(B2:B4)
Then use a similar function for the total in the next column E. It will have the following formula:
=SUM(C2:C4)
Don't concern yourself that the sums are created for months that are not quarters. This is done to make the copying easier for you. You'll not need those values anyway in the next few steps.
Finally, we need to identify quarters without a lot of work. If your Date column isn't in an Excel Date format, such as text, you may want to convert it. In a new column, F in this example, begin this formula in the first row of data. We will mark the rows using the following formula:
=IF(MOD(MONTH(A2),3)=0, "Quarter", "Month")
Now copy the three formulas in the new columns D,E & F into the remaining cells in your table. It should look like this:
Finally, select this table, choose Format As Table, pick a simple format, and Excel will produce a result like so:
The final step is to select the filter button over the new "Period" column in F and select only the "Quarters" values to filter on:
Your table should look like this now:
At this point I would suggest selecting only the columns you need from your final table and then using Paste->Special->Values to relocate your data.