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

Text Object with Multiple Expressions

Hi, if I want to create a text object with multiple expression like below:

Distributor: ABC

Class: XY

But what I get was (all display in one line):

Distributor: ABC Class: XY

Any idea? Thanks

Regards

Benjamin See

1 Solution

Accepted Solutions
sebastiandperei
Specialist
Specialist

Try:

='Distributor: '&expression_class&'

Class'&expression_class

Note that i have "pushed" intro before i have typed Class....

View solution in original post

5 Replies
sebastiandperei
Specialist
Specialist

Try:

='Distributor: '&expression_class&'

Class'&expression_class

Note that i have "pushed" intro before i have typed Class....

chiru_thota
Specialist
Specialist

='Distributor'&':'& Col1 &chr(10)&'Class'&Col2

use Chr(10) for new line

amit_saini
Master III
Master III

Hi Benjamin,

Use &' '&  to display them in different line.

Thanks,

AS

aveeeeeee7en
Specialist III
Specialist III

Hi Benjamin

Use below code in your Text Box Expression:

='Distributor:  '&Distributor&'  '&'Class:  '& Class

See the Attachment

Regards

Aviral Nag

Not applicable
Author

Brilliant. Working as expected.