Olá Comunidade!
Gostaria de inicialmente esconder uma tabela e um objeto "Texto e Imagem" e exibir após o usuário filtrar.
Alguma ideia de como posso começar a fazer isso e se é possível?
Desde já, agradeço.
Aqui(Sense) deu certo da seguinte forma:
If(Not Isnull(GetFieldSelections([Campo]))
Obrigado senhores.
In QlikView in the object properties on the object Layout tab there is a "Show" option.
- Always
- Conditional
Choose conditional and write a formula.
=Len(GetCurrentSelections())>0
Using the formula above the field will only show if something is selected.
If you need the field to stay visible - even if the user clears all selections - you will need to introduce a variable that is set to 0 when the form is opened, and changed to 1 once something is selected. The conditional statement would then only look at that variable
Se for no qlikview eis uma opção:
Obrigado Thiago!
Mas é para o QlikSense...
Nativamente pra objeto de texto no Sense não é possível. Mas você pode usar essa extensão;
https://github.com/fadyheiba/ShowHide
Aqui(Sense) deu certo da seguinte forma:
If(Not Isnull(GetFieldSelections([Campo]))
Obrigado senhores.