Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Is possible to apply a chart condition from selecting any value of a filter?


Hello everyone,

I am working in a project, where i need to apply a condition to show a specific chart, only when the user clicks on in any value of a filter.

For example, when the user clicks on any of the lines in the table below, the condition to show the chart is true:

Divisão.JPG

Is it possible to do that on QlikView?

Thanks

1 Solution

Accepted Solutions
swuehl
MVP
MVP

Use a conditional show/ condition on layout tab

=GetSelectedCount( Divisao )>0

View solution in original post

5 Replies
swuehl
MVP
MVP

Use a conditional show/ condition on layout tab

=GetSelectedCount( Divisao )>0

Not applicable
Author

Hi

try to use

if(getcurrentselections(filedname)='filedname: x' ,1,0)

where x is the value IT, or RH

Not applicable
Author

In Layout Tab

Show Condition

if(getcurrentselections(filedname)='filedname: x' ,1,0)

where x is the value IT, or RH

tamilarasu
Champion
Champion

Type like this in your chart conditional show property

Getselectedvalue(Divaso)='E. NG.'... Adapt the  expression according to the above listbox values for all charts.

Not applicable
Author

Thanks swuehl, your tip works fine.