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: 
Not applicable

Hiding an object with a selection without using a text box for hiding

All,

I would like to select a "Goal" in the Goals listbox, as so:


Result choices.png


and change this layout

Initial.png

to this layout

Result.png

Does anyone know how I could accomplish this?

Thanks in Advance,

Preston

1 Solution

Accepted Solutions
tamilarasu
Champion
Champion

Hi Preston,

You can use below expression in Conditional show property of the chart. Check the attachment and adapt the same for all charts.


=Count(DISTINCT {<Type={'Measure'},ID={'1.2*'}>} [Measure Name])

View solution in original post

4 Replies
tamilarasu
Champion
Champion

Hi Preston,

You can use below expression in Conditional show property of the chart. Check the attachment and adapt the same for all charts.


=Count(DISTINCT {<Type={'Measure'},ID={'1.2*'}>} [Measure Name])

uacg0009
Partner - Specialist
Partner - Specialist

Hi Preston,

And I also think that you can create a variable, for example named v1,

then using :

v1=if(Goals='Mission Specific',1,0)

then using the v1=1 then show the Mission Measures in condition.And 0 show another list box.

Aiolos Zhao

Not applicable
Author

Thanks Tamil for the solution! I really appreciate it.

Regards,

Preston

Not applicable
Author

Aiolos,

I never thought about using the variable, but I think I'll combine it with Tamil's answer above to really work some mags with what I'm trying to do.