Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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
try like this
=GetFieldSelections(SystemName) &' - ' &GetFieldSelections(Description,chr(10))
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 .
all of these are only pulling the System Name Values, the Description values are blank.
Share the sample app ...will check and get back to you
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.