Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Talend Cloud AWS EU Scheduled Outage: Starting Tues 26 May 21:00 CEST with expected completion Wed 27 May 01:00 CEST
cancel
Showing results for 
Search instead for 
Did you mean: 
carlos13
Creator
Creator

How calculate the percentage?

From the Field "ESTRATEGICOS_OBJ_NOMBRE" that has the following values

1.png

Calculate the percentage

1.png

And I want to get the overall percentage including

1.png

But using “sum(total<ESTRATEGICOS_OBJ_NOMBRE,Nombre,IND_NOMBRE> OBJETIVOS_OBJ_PORCENTAJE/100) ” not working

1.png

nor with “Avg(total<ESTRATEGICOS_OBJ_NOMBRE,Nombre,IND_NOMBRE> OBJETIVOS_OBJ_PORCENTAJE/100)

1.png

I appreciate any help in advance

I add the example of what I'm working pair to see if I can help.

thanks


Labels (1)
1 Solution

Accepted Solutions
whiteline
Master II
Master II

Don't now if its logicaly right, but I think I've got what you want.

Use this expression:

=avg({$<Nombre={"=Len(Nombre)>0"}>}IF(RSP_CLASE=2,OBJETIVOS_OBJ_PORCENTAJE/100))

And UnCheck 'Supress Zero-Values' on Presentation tab.

View solution in original post

2 Replies
whiteline
Master II
Master II

Don't now if its logicaly right, but I think I've got what you want.

Use this expression:

=avg({$<Nombre={"=Len(Nombre)>0"}>}IF(RSP_CLASE=2,OBJETIVOS_OBJ_PORCENTAJE/100))

And UnCheck 'Supress Zero-Values' on Presentation tab.

carlos13
Creator
Creator
Author

thank