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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Adding text box to provide description of dimension names

I would like to add a text box that pops up with the name of the dimension and a description of a dimension when a user selects the dimension from a list box.  I can get this to work with the following expression in the text box -

=_dimension & ' - ' &_dimensiondescription

I would like this to show more than one name and description based on the number of dimensions a user selects, but as soon as a user selects more than one dimension the text box just shows '-'.

Any suggestions?

Thanks

Greg

1 Solution

Accepted Solutions
ahaahaaha
Partner - Master
Partner - Master

Hi Greg,


May be like this

=Concat(_dimension & ' - ' &_dimensiondescription, ', ') or

=Concat(_dimension & ' - ' &_dimensiondescription, Chr(10)&Chr(13))

View solution in original post

3 Replies
ahaahaaha
Partner - Master
Partner - Master

Hi Greg,


May be like this

=Concat(_dimension & ' - ' &_dimensiondescription, ', ') or

=Concat(_dimension & ' - ' &_dimensiondescription, Chr(10)&Chr(13))

Anonymous
Not applicable
Author

Brilliant!  Thanks very much.

ahaahaaha
Partner - Master
Partner - Master

Was glad to help you