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

Announcements
ALERT: QlikView server communication interruptions following Microsoft Windows Domain Controller security updates
cancel
Showing results for 
Search instead for 
Did you mean: 
agni_gold
Specialist III
Specialist III

Text Box mouse hover show list of values

Hi Team ,

I have requirement that , i have one text box and on mouse hover i want to show list of values on this , is that possible .

Please help.

Thanks

Labels (1)
5 Replies
jonathandienst
Partner - Champion III
Partner - Champion III

The mouse-over hover text for a a text box is defined in the entry "Help Text" on the Caption tab. You can enter an expression here, so use something like

     =Concat(Distinct [MyField], ', ')

where MyField is the field to display. Adapt to your needs.

Logic will get you from a to b. Imagination will take you everywhere. - A Einstein
agni_gold
Specialist III
Specialist III
Author

Thanks but i need to show fields like list box , it this possible , right now values are coming by comma (,) , i want all values to next lines.

agni_gold
Specialist III
Specialist III
Author

could we make sorting on these name ?

rubenmarin

Hi, you can try with

=Concat(DISTINCT ValueExpression, Chr(13),OrderExpression)


In example:

Contact(DISTINCT Country, Chr(13), Number_Id)

avinashelite

yes , use the new line chr(13) with the concat function and increase your text size accordingly.. this should work