Sum of Every Other cell

  • Thread starter Thread starter That's Confidential
  • Start date Start date
T

That's Confidential

If I want to work out the sum of every other cell in a column, say for
example, A1+A3+A5+A7 etc......., how would I go about doing it? Is there a
quicker way than actually just using the + sign?
 
Try this

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

--

HTH

Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)
 
Back
Top