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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

The percentage are not consistent into across selections

Hi All!!

I have a litle Issue.

I Have a data that is measeuring a subset of data against the total.

The formule its the following:

Count({<Resultado_llamada={'Atendida'}>}IDCALL) / Count(IDCALL)

beside this, i have other indicator with the following:

Count({<Resultado_llamada={'No Atendida'}>}IDCALL) / Count(IDCALL)

The Field Resultado_llamada have 5 posibles values.

What is happening. When i select any value, the result displayed its correct, but no the others indicators.

For instance:

If i select "Atendida", in the first indicator show me 100%. But, does not display 0% in the second indicator as spected.

Just to clarify the case, i'll put a table as example:

With no selections, the values are this:

Resultado_llamadaTotal
Atendida100
No Atendida75
TOTAL175

If i Select, for instance, "Atendida" the result is:

Resultado_llamadaTotal
Atendida100
No Atendida75
TOTAL100

The Spected result that i would like to receive, if i select "Atendida", is:

Resultado_llamadaTotal
Atendida100
No Atendida0
TOTAL100

Thanks for any feedback.

Regards!

1 Solution

Accepted Solutions
sridhar240784
Creator III
Creator III

Not Sure whether i have understood you problem properly.

Try using below expression, this may help you.

Count({<Resultado_llamada *={'Atendida'}>}IDCALL) / Count(IDCALL)

Count({<Resultado_llamada *={'No Atendida'}>}IDCALL) / Count(IDCALL)

-Sridhar

View solution in original post

2 Replies
sridhar240784
Creator III
Creator III

Not Sure whether i have understood you problem properly.

Try using below expression, this may help you.

Count({<Resultado_llamada *={'Atendida'}>}IDCALL) / Count(IDCALL)

Count({<Resultado_llamada *={'No Atendida'}>}IDCALL) / Count(IDCALL)

-Sridhar

Not applicable
Author

THANKS a LOT!!!  It works!!!

Regards!