ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Worksheet Functions (https://www.excelbanter.com/excel-worksheet-functions/)
-   -   Sum every 10th cell in a range of cells? (https://www.excelbanter.com/excel-worksheet-functions/26080-sum-every-10th-cell-range-cells.html)

JKJ95

Sum every 10th cell in a range of cells?
 
Is it possible to Sum every 10th cell in a range of cells (i.e.
a10+a20+a30....in a range of a1:a500) without entering every cell manually?
Thanks.

Bernie Deitrick

JKJ95

=SUMPRODUCT((MOD(ROW(A1:A500),10)=0)*A1:A500)

HTH,
Bernie
MS Excel MVP


"JKJ95" wrote in message
...
Is it possible to Sum every 10th cell in a range of cells (i.e.
a10+a20+a30....in a range of a1:a500) without entering every cell

manually?
Thanks.




Bob Umlas

=SUMPRODUCT((A1:A500)*(MOD(ROW(1:500),10)=0))
Bob Umlas
Excel MVP

"JKJ95" wrote in message
...
Is it possible to Sum every 10th cell in a range of cells (i.e.
a10+a20+a30....in a range of a1:a500) without entering every cell

manually?
Thanks.




Domenic

Try...

=SUMPRODUCT(--(MOD(ROW(A1:A500)-CELL("row",A1)+1,10)=0),A1:A500)

In instances where you want to sum every 10th cell starting from A1,
change the +1 part of the formula to +0...

=SUMPRODUCT(--(MOD(ROW(A1:A500)-CELL("row",A1)+0,10)=0),A1:A500)

Hope this helps!

In article ,
"JKJ95" wrote:

Is it possible to Sum every 10th cell in a range of cells (i.e.
a10+a20+a30....in a range of a1:a500) without entering every cell manually?
Thanks.


Tom Ogilvy

=SUM(IF(MOD(ROW(A1:A500),10)=0,A1:A500))

Entered with Ctrl+Shift+Enter rather than just enter since this is an array
formula.

--
Regards,
Tom Ogilvy


"JKJ95" wrote in message
...
Is it possible to Sum every 10th cell in a range of cells (i.e.
a10+a20+a30....in a range of a1:a500) without entering every cell

manually?
Thanks.




Duke Carey

=SUMPRODUCT(--(MOD(ROW(A1:A500),10)=0),A1:A500)

"JKJ95" wrote:

Is it possible to Sum every 10th cell in a range of cells (i.e.
a10+a20+a30....in a range of a1:a500) without entering every cell manually?
Thanks.


Ron Coderre

Try something like this:
=SUMPRODUCT(--(MOD(ROW($A$10:$A$30)-ROW($B$10),10)=0)*$A$10:$A$30)

--
Regards,
Ron


Jerry W. Lewis

=SUMPRODUCT(((MOD(A1:A500,10)=0)*A1:A500))

Jerry

JKJ95 wrote:

Is it possible to Sum every 10th cell in a range of cells (i.e.
a10+a20+a30....in a range of a1:a500) without entering every cell manually?
Thanks.



Alok

You probably meant

=SUMPRODUCT(((MOD(ROW(A1:A500),10)=0)*A1:A500))

Alok Joshi

"Jerry W. Lewis" wrote:

=SUMPRODUCT(((MOD(A1:A500,10)=0)*A1:A500))

Jerry

JKJ95 wrote:

Is it possible to Sum every 10th cell in a range of cells (i.e.
a10+a20+a30....in a range of a1:a500) without entering every cell manually?
Thanks.




Jerry W. Lewis

True

Alok wrote:

You probably meant

=SUMPRODUCT(((MOD(ROW(A1:A500),10)=0)*A1:A500))

Alok Joshi

"Jerry W. Lewis" wrote:


=SUMPRODUCT(((MOD(A1:A500,10)=0)*A1:A500))

Jerry

JKJ95 wrote:


Is it possible to Sum every 10th cell in a range of cells (i.e.
a10+a20+a30....in a range of a1:a500) without entering every cell manually?
Thanks.




All times are GMT +1. The time now is 02:44 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com