Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
First sorry for my english..
I have this table
person date number
A 23/03/2010 5
24/03/2010 3
25/03/2010 6
B 23/03/2010 1
25/03/2010 2
I need to create a new filed on the chart that makes the partial sum of the number so it has to show like this
person date number ACUM
A 23/03/2010 5 5
24/03/2010 3 8
25/03/2010 6 14
B 23/03/2010 1 1
25/03/2010 2 3
thanks for all.
Hi,
it depends on the object you will use.
A straight table provides this option. See the screen shot.
Rainer
Hola Txetxu,
Te dejo la expresión que uso para calcular acumulados:
rangesum(above(Sum(NETO), 0, rowno()))
En tu caso, debería existir en la tabla pivotante o en la tabla simple una dimensión que fuese "Persona"
Saludos.
thanks for all. That ok Miguel.
another question ... i don´t know if it can be do it,
i want to know if it can be doi it the partial sum...
otra pregunta .. que no se si se podra hacer...
se puede hacer la suma total, es decir que aparezcan las suma parciales.. como cuando haces
=SUM(numero)
Thaanks.
Depende de cómo tengas el gráfico. Si haces una tabla simple, por ejemplo, y si quieres sacar el total de cualquier columna, puedes indicarlo en la pestaña "Expresiones", "Modo Total" y seleccionas "Suma de Filas". ¿Es eso lo que buscas?
Tengo un pivot table
Entonces deberás crear una expresión aparte para que lo calcule. Si tienes una columna Ventas y otra Acumulado, la expresión debería ser
ya que hasta donde sé las tablas pivotantes no dejan mostrar el total de un acumulado (las tablas simples sí, por eso pregunté).rangesum(sum(Ventas),above(Acumulado))
Saludos.