Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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?
Bom dia,
É possível utilizando o "only"
Segue expressão para colocar no filtro.
=only([des-motivo])<>'FALTA'
Bom dia,
É possível utilizando o "only"
Segue expressão para colocar no filtro.
=only([des-motivo])<>'FALTA'
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'}
Hi!
I had a similar situation, try this:
=only([unreason])<>('MISSING') AND only([unreason])<>('MISSING2')
Hello!
It worked perfectly, thank you very much! 😃