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

Data from table into text object

Hi all,

Trying to place some text into from a table into a text object. I need all text (from 2 fields) from the table in the text object.

Something like

= field1 & ' ' & field2

But I need all text not just based on a selection. So something like:

= {1} field1 & ' ' & {1} field2

But I am getting errors.

Any ideas?

Regards

Revlin

2 Replies
swuehl
MVP
MVP

You'll need an aggregation function here, like concat:

=concat( {1} field1 & ' ' & field2, ', ')

Not applicable
Author

Yes that works. Thank you.