Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How do I make a sheet appear when I make a selection?

Hi

I want to know how I can show and activate a sheet as soon as I click on a value in either a list box or a table. I have a list of names in a table and I have created a sheet showing a detailed view of that person. I don't want to show the sheet but hide it and only open it if and only if someone clicks on a name in my table or list box.

Thanks

Rajesh

3 Replies
Not applicable
Author

Hi,

Go to sheet properties

General-------> Show sheet------>Conditional

Put the condition as per the values in the list box

Thanks & Regards

Upendra

Not applicable
Author

General-------> Show sheet------>Conditional

if(len(GetFieldSelections(namefiled))<>0,1,0)

bye

jagan
Luminary Alumni
Luminary Alumni

Hi,

Go to sheet properties

General-------> Show sheet------>Conditional

Use the following expression

If(GetSelectedCount(FieldName) > 0, 1, 0)

Hope this helps you.

Regards,

Jagan.