As the title says, I would like to convert monthly Excel data into quarterly by summing the 3 previous cells (i.e merge January, February and March 2003 data into Q1 2003)
Much thanks in advance
As the title says, I would like to convert monthly Excel data into quarterly by summing the 3 previous cells (i.e merge January, February and March 2003 data into Q1 2003)
Much thanks in advance
On
Please provide a basic example of your data when asking the question. As is, your question is quite nebulous and it is unclear what form your sheet is in.
As a very basic example, assuming you have a single column of data with each cell representing a single month in column A, you can easily sum each set of 3 cells in column B. In B3, you can use the formula
=SUM(A1:A3)
and then copy it to every B cell that is divisible by 3 (6, 9, 12, 15, etc.)
If you want something you can simply copy throughout the column, you could use
=IF(MOD(ROW(B3), 3) = 0, SUM(A1:A3), "")
as it will skip all non 3 divisible rows.
On
If your dates are formatted as dates you could create a pivot table that handles the dates allowing you to sum by flexible periods (year, quarter, period). Just highlight your data and select Insert pivot table and drag the date into the appropriate fields. Then right click and select "group" and you'll see all the date options
You can also create a table where you do a lookup on the first day of each month with a non-exact match, and label the rows with the respective quarters then do a sumifs from those quarters.
There are many ways of doing this, here are few examples:
• If there are only month names:
• If the dates are true dates then:
Sample data used for the following formulas:
Or if applicable using
GROUPBY()to get all the quarters :If one don't have access to
GROUPBY()then usingBYROW()orMMULT()Note: Since there is no sample mock up data, hence you may need to change the range and ranges as per your suit.