Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi i have Field 1, field 2, field 3 and field 4
i have to do the sum of field 1, 2 and 3 / 4
How do i do the sum of (field1 + field 2+ field3) with set analysis?
thank you
greetings
SORY if i didn't do myself clear.
I have only one expresion. is sum(VALOR). The fields are all in one dimmension.
I'm using this
=If(AGRUPA_CONCEPTO = 'BONIFICACIONES%' ,
SUM({<CONCEPTO ={BONIFICACIONES_NC, OTRAS_BONIFICACIONES,BONIFICACIONES_PROV }>}VALOR) / 1000,
SUM(VALOR) / 1000)
The problem is that i don't have the sum in one field. I have it separated in three fields. Here the image
Why do you want set analysis here? Which selection do you want to apply?
I think something like
=Sum(Field1) + Sum(Field2) + ( Sum(Field3) / Sum(Field4) )
or
= Sum( Rangesum( Field1, Field2, Field3/Field4) )
might return what you want (I am not sure what you want, it's always better to post some sample data and exprected outcome).
SORY if i didn't do myself clear.
I have only one expresion. is sum(VALOR). The fields are all in one dimmension.
I'm using this
=If(AGRUPA_CONCEPTO = 'BONIFICACIONES%' ,
SUM({<CONCEPTO ={BONIFICACIONES_NC, OTRAS_BONIFICACIONES,BONIFICACIONES_PROV }>}VALOR) / 1000,
SUM(VALOR) / 1000)
The problem is that i don't have the sum in one field. I have it separated in three fields. Here the image
It should work using a straight table with dimension AGRUPA_CONCEPTO and your expression.
You shouldn't use the second dimension, I believe.
swuehl is right. you should not be using CONCEPTO dimension in order to collapse the totals: