Range of cells and division formula

  • Thread starter Thread starter tdg119
  • Start date Start date
T

tdg119

I basically just want to divide the sum of one range of cells by the sum of
another range of cells.

This works: =SUM(H2+H3)/(E2+E3).
This does not work: =SUM(H2:H3)/(E2:E3)

I want to be able to copy the formula to continue adding to the range of
cells on each side.

IE: =SUM(H2:H4)/(E2:E4) through end of spreadsheet: =SUM(H52:H54)/(E52:E54)


What's wrong with my formula?
 
You just forgot to include the SUM for your second function:

=SUM(H2:H3)/SUM(E2:E3)

HTH,
Elkar
 
=SUM(H2:H3)/SUM(E2:E3)

-via135
I basically just want to divide the sum of one range of cells by the su
of
another range of cells.

This works: =SUM(H2+H3)/(E2+E3).
This does not work: =SUM(H2:H3)/(E2:E3)

I want to be able to copy the formula to continue adding to the rang
of
cells on each side.

IE: =SUM(H2:H4)/(E2:E4) through end of spreadsheet:
=SUM(H52:H54)/(E52:E54)


What's wrong with my formula
 

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

Back
Top