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

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Show a field when making a selection for a certain value

Hi,

I was wondering if there was a way in qlikview to show a text box after selecting a certain field.

I have a field titled 'System Name' and when I click on a value of System Name I'd like to show a box that has it's description in it.

Thanks

14 Replies
avinashelite

try like this

=GetFieldSelections(SystemName) &' -  ' &GetFieldSelections(Description,chr(10))

sravanthialuval
Creator
Creator

Try this,

=GetFieldSelections(System name)& '  ' & Chr(13) & '  ' & if(GetFieldSelections(System name)=System name),des)


when you select system name it will display the system name in first line and description in next line .

Not applicable
Author

all of these are only pulling the System Name Values, the Description values are blank.

avinashelite

Share the sample app ...will check and get back to you

sravanthialuval
Creator
Creator

By using above expression in if condition it will pull the description related system name.

If you  are not getting the  correct result, please share your sample app.