Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
rociotrevial
Creator
Creator

Ignorar Seleccion en tabla

Hola, quisiera me ayudaran a saber como puedo hacer lo siguiente:

Tengo 2 tablas (Jefes y vendedores) y un filtro para seleccionar el tipo de jefe (coordinador o gerente). Pero quisiera que este filtro de tipo de jefe no me afecte a la tabla de vendedores, es decir, que si selecciono coordinador o gerente, la tabla de vendedores muestre todo independientemente del tipo de jefe.

¿Se puede?

Gracias de antemanoPicture1.gif

1 Solution

Accepted Solutions
oknotsen
Master III
Master III

The image is to small (even after clicking on it), so I can not see your demo data, but if Google Translate did a good job, I think I understand your question.

You want a table to ignore the selection on a specific field. This is possible with Set Analysis.

Assuming the "leader" (or job title; translation issue) field is called "leader" and you are doing a sum of sales, try this:

sum({ < leader= > } Sales)

That will ignore selections in the leader field for that expression.

May you live in interesting times!

View solution in original post

3 Replies
oknotsen
Master III
Master III

The image is to small (even after clicking on it), so I can not see your demo data, but if Google Translate did a good job, I think I understand your question.

You want a table to ignore the selection on a specific field. This is possible with Set Analysis.

Assuming the "leader" (or job title; translation issue) field is called "leader" and you are doing a sum of sales, try this:

sum({ < leader= > } Sales)

That will ignore selections in the leader field for that expression.

May you live in interesting times!
jaimeaguilar
Partner - Specialist II
Partner - Specialist II

Hola,

para poder ignorar selecciones necesitarías usar set analysis de la siguiente manera,

suponiendo que tu métrica fuera Ventas (esta parte la tendrías que sustituir por tu métrica):

sum({$<Jefes=>} Ventas),

de esta forma, no importa que selección tengas en "Jefes", no va a afectar a la tabla donde estas visualizando a los vendedores, pero si va a seguir reaccionando a las demás selecciones (por eso el $ en el set analysis),

saludos

rociotrevial
Creator
Creator
Author

Muchisimas gracias a ambos por la respuesta, ya me funciono como queria.

saludos!