Convert monthly data into quarterly data?

G

Guest

Does an easy way exist to convert a column of monthly data into a column of
quarterly data (average of months in the quarter)?
THANKS!
 
G

Guest

You might try this:
=SUM(OFFSET($M$3,ROW()*3-9,0,3,1))
Replace $M$3 with the cell address of the first month's data. Replace the 9
with 3*the row number of that first month's data (my example was in row 3;
3*3=9). Autofill that formula down through three more rows.
HTH. --Bruce
 
G

Guest

Works like a charm... thanks, a thousand thanks!

bpeltzer said:
You might try this:
=SUM(OFFSET($M$3,ROW()*3-9,0,3,1))
Replace $M$3 with the cell address of the first month's data. Replace the 9
with 3*the row number of that first month's data (my example was in row 3;
3*3=9). Autofill that formula down through three more rows.
HTH. --Bruce
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top