Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
aferrari7
Partner - Contributor II
Partner - Contributor II

Esconder tabela e objeto "Texto e Imagem"

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.

Labels (1)
1 Solution

Accepted Solutions
aferrari7
Partner - Contributor II
Partner - Contributor II
Author

Aqui(Sense) deu certo da seguinte forma:

If(Not Isnull(GetFieldSelections([Campo]))

Obrigado senhores.

View solution in original post

5 Replies
tdegen_qlik
Contributor
Contributor

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

Thiago_Justen_

Se for no qlikview eis uma opção:

Vincular Agendamento a Romaneio.gif

Thiago Justen Teixeira Gonçalves
Farol BI
WhatsApp: 24 98152-1675
Skype: justen.thiago
aferrari7
Partner - Contributor II
Partner - Contributor II
Author

Obrigado Thiago!

Mas é para o QlikSense...

Thiago_Justen_

Nativamente pra objeto de texto no Sense não é possível. Mas você pode usar essa extensão;

https://github.com/fadyheiba/ShowHide

Thiago Justen Teixeira Gonçalves
Farol BI
WhatsApp: 24 98152-1675
Skype: justen.thiago
aferrari7
Partner - Contributor II
Partner - Contributor II
Author

Aqui(Sense) deu certo da seguinte forma:

If(Not Isnull(GetFieldSelections([Campo]))

Obrigado senhores.