Skip to main content
Announcements
NEW: Seamless Public Data Sharing with Qlik's New Anonymous Access Capability: TELL ME MORE!
cancel
Showing results for 
Search instead for 
Did you mean: 
mbianchi_
Contributor II
Contributor II

Expressão em filtro QlikSense - Diferente de

Bom dia!

Tenho um campo no meu QlikSense, [des-motivo]. Quero criar um marcador padrão, selecionando todos os motivos neste campo, exceto apenas um deles "FALTA". 

Tentei de alguns jeitos, mas não funcionaram:

[des-motivo]-={'FALTA'}

[des-motivo]<>{'FALTA'}

Alguém sabe como posso fazer isso?

1 Solution

Accepted Solutions
Neto_Braga
Contributor II
Contributor II

Bom dia,

É possível utilizando o "only"

Segue expressão para colocar no filtro.

=only([des-motivo])<>'FALTA'

View solution in original post

4 Replies
Neto_Braga
Contributor II
Contributor II

Bom dia,

É possível utilizando o "only"

Segue expressão para colocar no filtro.

=only([des-motivo])<>'FALTA'

AdminLoghaus
Contributor II
Contributor II

Hello!

I'm in a situation similar to the case above, but I need the filter to apply to two pieces of information, that is, I need the filter to be different from two values.
How can I do this?
I tried putting the options below, but they didn't work:
=only([unreason])<>'MISSING','MISSING2'
=only([unreason])<>{'MISSING','MISSING2'}

mbianchi_
Contributor II
Contributor II
Author

Hi!

I had a similar situation, try this:

=only([unreason])<>('MISSING') AND only([unreason])<>('MISSING2')

 

AdminLoghaus
Contributor II
Contributor II

Hello!

It worked perfectly, thank you very much! 😃