sum even rows

  • Thread starter Thread starter wolfgang
  • Start date Start date
W

wolfgang

i need a formula that can sum all the cells in even
numbered rows in column A from 1 to 300. i have been
fiddeling with =mod(row(),2)=0 but i cannot get asny
further. TIA
 
Hi Wolfgang!

One way:

=SUMPRODUCT((A1:A300)*(1-MOD(ROW(A1:A300),2)))

--
Regards
Norman Harker MVP (Excel)
Sydney, Australia
(e-mail address removed)
Excel and Word Function Lists (Classifications, Syntax and Arguments)
available free to good homes.
 
One way:

=SUMPRODUCT((MOD(ROW(1:300),2)=0)*A1:A300)

HTH
Jason
Atlanta, GA
 

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