Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
berryandcherry6
Creator III
Creator III

Displaying specific data in Table

Hi all,

I am putting a table of columns quick_tips_question_id and question_text. I want it to show only for question_type "Multiple Choice" .

I have used below expression for quick_tips_question_id  and question_text dimension.

if(GetSelectedCount(subject_header)>0,quick_tips_question_id)

if(GetSelectedCount(subject_header)>0,question_text)

How could i do this. Please help me in this.

Regards,

Supriya

4 Replies
arulsettu
Master III
Master III

hi

may be like this

if(quick_tips_question_type='Multiple Choice',quick_tips_question_type)

berryandcherry6
Creator III
Creator III
Author

Hi ,

Thanks for reply.

I am using filter,if row in filter is selected then only i am making to display datas or chart.

To make happen like this i am using   'GetSelectedCount(subject_header)>0'. How could i put the condition so that it take this condition also.

Regards,

Supriya

sasiparupudi1
Master III
Master III

In the straight table

use a calculation condition  :GetSelectedCount(subject_header)>0 to show the details in the table or in the layout to use a conditional display.

create

dimension: quick_tips_question_id


expression  Only({<quick_tips_question_type={'Multiple Choice'}>}question_text


hth

Sasi

arulsettu
Master III
Master III

like this?

Untitled.png