Sumar valores cada x filas

ColdGeorge

Active Member
Joined
Aug 21, 2012
Messages
412
Office Version
  1. 2016
Platform
  1. Windows
Hola amigos

En A:A tengo valores, en B:B deseo conocer subtotal cada x cantidad de filas, ¿cómo alcanzo este objetivo? gracias por su ayuda.

ColdGeorge
 

Excel Facts

When did Power Query debut in Excel?
Although it was an add-in in Excel 2010 & Excel 2013, Power Query became a part of Excel in 2016, in Data, Get & Transform Data.
Hola,

Tienes que utilizar una formula de matriz ..
Code:
[COLOR=#0A0101][FONT=Helvetica Neue][B]=SUM(IF(MOD(ROW($A$1:$A$20),x)=0,$A$1:$A$20,0))
[/B][/FONT][/COLOR]

Para la formula de matriz, hay que Pulsar las teclas Ctrl + Mayús + Intro

:wink:
 
Upvote 0
Gracias

Estoy buscando el equivalente a SUM, IF, MOD, ROW, enseguida, ¿cómo introduzco el intervalo de filas?

ColdGeorge


Hola,

Tienes que utilizar una formula de matriz ..
Code:
[COLOR=#0A0101][FONT=Helvetica Neue][B]=SUM(IF(MOD(ROW($A$1:$A$20),x)=0,$A$1:$A$20,0))
[/B][/FONT][/COLOR]

Para la formula de matriz, hay que Pulsar las teclas Ctrl + Mayús + Intro

:wink:
 
Upvote 0
Hay que reemplazar x con tu valor ... :wink:

Para cada otra linea ... x = 2 ...

=SUM(IF(MOD(ROW($A$1:$A$20),x)=0,$A$1:$A$20,0))
 
Last edited:
Upvote 0
Hola George. Se puede interpretar su pregunta en dos maneras. Una es que usted desea sumar cada x celdas en columna A:A, o sea por ejemplo cada quinta celda. Algo parecido a Sum(A5,A10,A15,A20,A25,....) o cada tercera celda como Sum(A3,A6,A9,A12,A15,...)

Esto se puede hacer con fórmulas como:

=SUMPRODUCT(A1:A30,--(MOD(ROW(A1:A30),5)=0))

o

=SUMPRODUCT(A1:A30,--(MOD(ROW(A1:A30),3)=0))

La segunda interpretación es que en cada celda x en B:B, usted quiere sumar A, por ejemplo:

B5 tiene la fórmula =SUM(A1:A5) y
B10 tiene la fórmula =SUM(A6:A10) y
B15 tiene la fórmula =SUM(A11:A15)
...

o

B3 tiene la fórmula =SUM(A1:A3) y
B6 tiene la fórmula =SUM(A4:A6) y
B9 tiene la fórmula =SUM(A7:A9)
...

Esto se puede hacer con

=IF(MOD(ROW(),5),"",SUM(OFFSET(INDIRECT("RC",FALSE),-4,-1,5,1)))

o

=IF(MOD(ROW(),3),"",SUM(OFFSET(INDIRECT("RC",FALSE),-2,-1,3,1)))

Note que ninguna es una fórmula matricial (es decir que se confirma con solo ENTRAR y no con CTRL+MAYÚS+ENTRAR).

Saludos,
 
Last edited:
Upvote 0

Forum statistics

Threads
1,223,936
Messages
6,175,507
Members
452,650
Latest member
Tinfish

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top